0

我在互联网上找到了一个 javascript 代码,它可以显示当地时间,但现在它没有显示在我的视图中,谁能帮助我?

Javascipt 代码:

ourDate = new Date();
    result = document.write(ourDate.toLocaleString());
    $("#time").html(result);

看法:

  <td>Time:</td>
  <td><span id="time"></span></td>
4

4 回答 4

2

如果您还没有添加 jQuery,那么请添加最新的 jQuery 参考,您使用document.write()的总是将变量写入您的视图,因此document.write()在初始化任何变量时无需使用。

替换这个result = document.write(ourDate.toLocaleString());

有了这个:

result = ourDate.toLocaleString();

在这里演示

于 2013-04-29T08:56:28.963 回答
0

试试这个:

ourDate = new Date();
$("#time").html(ourDate.toLocaleString());
于 2013-04-29T08:57:04.660 回答
0

尝试:

ourDate  = new Date();
var result =  ourDate .toLocaleString() ;
$("#time").html(result);   
于 2013-04-29T08:58:22.380 回答
0

要缩短你的 JavaScript,试试这个:

$("#time").html(new Date().toLocaleString());

在这里查看它的实际效果:http: //jsfiddle.net/x4dLf/1/

于 2013-04-29T09:00:29.010 回答