我在这里用php.S做一个示例程序,其中包括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>

现在的问题是,当我移动鼠标的时候,我弹出一个警告框,并且显示的日期一直都是相同的。请让我知道问题所在

最佳答案

试试这个

        $(document).ready(function(){
            $(this).mousemove(function(){
                var time1=new Date();
                time=time1.getSeconds();
                alert(time);
            });
        });

希望对你有帮助

关于php - JavaScript日期未提供tupdated值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17995005/

10-08 21:49