鼠标移动至少一次时创建PHP会话(Create PHP session when mouse moved at least once)
我想在鼠标移动至少一次时创建php会话,如果鼠标继续移动则不需要做任何事情
我正在使用此代码,但它没有解决要求
jQuery(document).ready(function()
{
$(document).mousemove(function(e)
{
$('#status').html(e.pageX);
$('#status1').html(e.pageY);
$.ajax({
type: 'POST',
url: 'second.php',
data: {
'x': '10',
'y': '20'
},
success: function(msg){
//what you want after request
}
});
});
});
I want to create php session when mouse is moved at least once then no need to do anything if mouse keeps moving
I am using this code but its not solving the requirement
jQuery(document).ready(function()
{
$(document).mousemove(function(e)
{
$('#status').html(e.pageX);
$('#status1').html(e.pageY);
$.ajax({
type: 'POST',
url: 'second.php',
data: {
'x': '10',
'y': '20'
},
success: function(msg){
//what you want after request
}
});
});
});
原文:https://stackoverflow.com/questions/47845256
更新时间:2020-01-28 06:34
最满意答案
PHP代码应该是这样的:
session_start();
if (!isset($_SESSION['mouseMoved'])
$_SESSION['mouseMoved'] = "whatever you want";
此外,您应该在JS中设置一些变量,以便仅将请求发送到服务器一次。
The PHP code should be something like this:
session_start();
if (!isset($_SESSION['mouseMoved'])
$_SESSION['mouseMoved'] = "whatever you want";
Also, you should set some variable in JS so that the request is only sent to the server once.
2017-12-17
相关问答
要回显会话,您需要调用session-variable,而不是与session-variable同名的常规变量。 所以你的回声是: echo $_SESSION["AgreeNum"];
此外,如果您在写入会话时遇到问题,则可能必须在向会话写入任何内容之前调用session_start() 。 To echo your session you will need to call the session-variable, not a regular variable with the same
...
您已经在第2-3行发送
后尝试发送Location标题。 你不能这样做。 必须在发送任何输出之前发送标头。 老实说,我不知道你的代码如何在你的本地服务器上工作。 You are trying to send a Location header after you've already sent on lines 2-3. You can't do that. Headers must be sent before any output is sent...
你有没有在XAML中搞定你的活动? 例如
//Your Page
Have you hooked your event up in XAML? For Example
//Your Page
检查包含的文件/代码结构..导致此错误的常见原因是: session_start();
/* Random Code here /*
session_start();
只是session_start();的重复行session_start(); 因此,我建议查看您收到此错误消息的所包含文件/主页,并检查多个session_start(); Check over your included files/code structure.. A usual cause for this erro
...
首先,并非所有版本的窗口都会在鼠标移动时更改滚动条的颜色。 如果您发现在Windows XP中找不到此功能。 现在很奇怪你为什么要改变滚动条的颜色我不明白。 但是你想要的 将鼠标移到滚动上时会触发的消息是什么? 当鼠标在滚动条上移动时调用其WM_NCMOUSEMOVE消息,因为滚动条也是非客户区。 有关此问题的更多信息,您可以参考此链接, MFC MDI问题:检测鼠标移动滚动条 First of all not all version of window changes the color of
...
根据此主题,此问题似乎是Chrome错误: 图片在悬停时移动 - 镀铬不透明度问题 ,我认为您应该设置位置:相对于内部img解决问题 This issue appears to be a Chrome bug according to this topic: image moves on hover - chrome opacity issue and I think you should setting position:relative to inner img solves the prob
...
你看到所有的mouseMoved方法都被调用吗? 这是写的方式,mouseMoved方法是PaintSurface的成员,但PaintSurface不是MouseMotionListener。 实现'MouseMotionListener'将强制它实现mouseMoved和mouseDragged 。 完成之后,您可以将自己的PaintSurface添加为自己作为MouseMotionListener 。 或者,您可以在已经定义的MouseMotionAdapter匿名类中移动mouseMoved
...
你确定你的浏览器正在接受它应该的cookies吗? 为了确保你尝试在不同的浏览器,然后通常的 are you sure your browser is accepting cookies like it should be ? To make sure you try in a different browser then your usual one
PHP代码应该是这样的: session_start();
if (!isset($_SESSION['mouseMoved'])
$_SESSION['mouseMoved'] = "whatever you want";
此外,您应该在JS中设置一些变量,以便仅将请求发送到服务器一次。 更新:一个工作的jsfiddle https://jsfiddle.net/bqh0yrtp/ The PHP code should be something like this: session_
...
也许GetLastInputInfo就是你在这里需要的MSDN 。 例如,要获取自上次鼠标移动或按键操作后经过的毫秒数,您可能具有如下函数: DWORD GetIdleTime()
{
LASTINPUTINFO pInput;
pInput.cbSize = sizeof(LASTINPUTINFO);
if (!GetLastInputInfo(&pInput))
{
// report error, etc.
}
...