我可以在手机上更新JavaScript吗?

时间:2011-11-23 07:46:59

标签: javascript mobile

我有一个移动网站,我使用JavaScript刷新消息计数器,JavaScript已启用,但它不会更新计数器。我正在测试的手机是诺基亚e90。另一款测试手机是HTC的创新,它在那里运作完美。

e90上的JavaScript版本是否过时了?

这是我的JS:

<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<title><?php echo TITLE_HOME;?></title>
<meta http-equiv="content-language" content="en" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
    <script type="text/javascript" src="include/js/jquery-1.3.2.min.js"></script>

    <!-- like this-->
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0b2.min.css" />  
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0b2.min.js"></script>


  <script>
    $(document).ready(function()
    {
        refresh();
    });

    function refresh()
    {      
        $.get('newMessageCnt.php', function (cnt) {
        $("#msgcntDiv").html("You have " + cnt);
        //console.log(cnt);
        //$("#msgcntDiv").text("You have " + cnt);
        window.setTimeout(refresh,30000);
        });   
    }   
 </script>

和php:

<?php
if ($numOfMessages <> 0)
{
    echo "<span class='headings_sub' id='msgcntDiv'>You have " .$numOfMessages . "</span>";
    echo "<a class='red_link' href='".ADDRESS."messages.php'> unopened Messages</a>";
}
else
{
     echo "<span class='headings_sub'>You have no new messages</span>";
}
?>
HTC $numOfMessages上的

更新没有闪烁。在E90上没有任何事情发生

2 个答案:

答案 0 :(得分:0)

Symbian s60v3导航器也基于webkit引擎和javascript引擎。 不确定是您问题的根本原因。给我们你的代码,它可以帮助你。

答案 1 :(得分:0)

尝试将id添加到else echo语句

else {
 echo "<span class='headings_sub' id='msgcntDiv'>You have no new messages</span>";
}

如果你从0条消息开始,那么如果有其他消息,你将没有span标识来更新文本。