在这里,我在 php 中制作了一个示例程序。其中我包含了 java 脚本并使用了日期,但我每次都得到相同的日期。让我们看看代码。
<?php
?>
<html>
<head>
<title>my app</title>
<script type="text/javascript" src="jquery-2.0.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var time1=new Date();
var time_stack=new Array();
var time;
$(this).mousemove(function(){
time=time1.getSeconds();
alert(time1);
});
});
</script>
</head>
<body>
<h2>we are on the main_session</h2>
</body>
</html>
现在的问题是,当我移动鼠标时,会弹出一个警告框,并且显示的日期始终相同。请让我知道问题