`onbeforeunload`处理程序中的XMLHttpRequest在Opera中不起作用

时间:2013-08-02 17:37:21

标签: ajax cross-browser xmlhttprequest onbeforeunload

我有这样的脚本:

<script language="JavaScript" type="text/javascript">

    function enter() {
        this.chrono = new Date().getMilliseconds();
    }

    function leave() {
        this.chrono = new Date().getMilliseconds() - this.chrono;

        alert("test" + this.chrono);

            var blockingRequest = new XMLHttpRequest();
            blockingRequest.open("GET", "visitor_log/ajax_store_visit_duration.php?visit_duration=" + this.chrono, false); // async = false
            blockingRequest.send();

        return null;
    }

    window.onload = enter;
    window.onbeforeunload = leave;
</script>

PHP部分(visitor_log / ajax_store_visit_duration.php文件):

<?php

if(isset($_GET["visit_duration"]))
{
    $text = $_GET["visit_duration"];

    logtxt($text);

    echo "OK";
}
else die("application error");

function logtxt($text)
{
    $myFile = "test.txt";
    $fh = fopen($myFile, 'wb');
    fwrite($fh, $text);
    fclose($fh);
}

?>

它在Chrome中完美运行,但在Opera中不起作用。

如何让它跨浏览器?

1 个答案:

答案 0 :(得分:0)

它不应该在任何地方工作。 getMilliseconds()返回日期对象的毫秒部分,而不是某个最终的毫秒值。该值始终低于1000.无法比较您的幅度。你真正想要的是普及时间。

(new Date()).valueOf()应该为您提供可以使用的价值。

这可能是部分答案,因为您实际上没有指定哪些不起作用。