我在互联网上找到了一个 javascript 代码,它可以显示当地时间,但现在它没有显示在我的视图中,谁能帮助我?
Javascipt 代码:
ourDate = new Date();
result = document.write(ourDate.toLocaleString());
$("#time").html(result);
看法:
<td>Time:</td>
<td><span id="time"></span></td>
如果您还没有添加 jQuery,那么请添加最新的 jQuery 参考,您使用document.write()
的总是将变量写入您的视图,因此document.write()
在初始化任何变量时无需使用。
替换这个result = document.write(ourDate.toLocaleString());
有了这个:
result = ourDate.toLocaleString();
试试这个:
ourDate = new Date();
$("#time").html(ourDate.toLocaleString());
尝试:
ourDate = new Date();
var result = ourDate .toLocaleString() ;
$("#time").html(result);
要缩短你的 JavaScript,试试这个:
$("#time").html(new Date().toLocaleString());
在这里查看它的实际效果:http: //jsfiddle.net/x4dLf/1/