在没有刷新或单击任何内容的情况下重定向实时网站访问者?
Redirect A Live Website Visitor Without Them Refreshing or Clicking anything?
我希望社区中有人可以告诉我我疯了,或者这是可能的。
The objective example; Someone is presently on a webpage, viewing the
content and/or watching a video. Let's say it's index.php, but we want
them to be on view.php. We click or save the php code and the page
automatically moves the visitor.
目前,我们可以在 WebinarJam、我们的实时网络研讨会(google 视频群聊)中执行此操作,我们只需单击视频群聊中托管的应用程序内的一个按钮,它将所有网络研讨会参与者重定向到另一个页面,方法是打开一个标签。
是否可以在有人访问您的网页时执行此操作?我已经四处搜索但无法确定是否可以,或者我是否只是在搜索关键字错误。
假设您可以创建一个 "listener" 每隔几秒检查一次,我认为这是可能的。同样,我不像这个社区中的大多数人那样是一个了不起的编码员。
感谢评论和信息。
我想我会像这样使用 jquery...
<script>
var stuff="{'webnair':'1'}";
var move = 0;
$('body').on('click',function(){
if(move){
$.post('add.php',{stuff: stuff},function(data,status){
if(status=='success'){alert('Done');}
});
}
});
我希望社区中有人可以告诉我我疯了,或者这是可能的。
The objective example; Someone is presently on a webpage, viewing the content and/or watching a video. Let's say it's index.php, but we want them to be on view.php. We click or save the php code and the page automatically moves the visitor.
目前,我们可以在 WebinarJam、我们的实时网络研讨会(google 视频群聊)中执行此操作,我们只需单击视频群聊中托管的应用程序内的一个按钮,它将所有网络研讨会参与者重定向到另一个页面,方法是打开一个标签。
是否可以在有人访问您的网页时执行此操作?我已经四处搜索但无法确定是否可以,或者我是否只是在搜索关键字错误。
假设您可以创建一个 "listener" 每隔几秒检查一次,我认为这是可能的。同样,我不像这个社区中的大多数人那样是一个了不起的编码员。
感谢评论和信息。
我想我会像这样使用 jquery...
<script>
var stuff="{'webnair':'1'}";
var move = 0;
$('body').on('click',function(){
if(move){
$.post('add.php',{stuff: stuff},function(data,status){
if(status=='success'){alert('Done');}
});
}
});