我正在尝试使用当前日期时间更改表单元格,但似乎无法弄清楚。
这是示例:http://jsfiddle.net/mkjckt3b/
$(document).ready(
$("#date").html("Date of Report: " + currentDateNow());
);
function currentDateNow(){
var newDate = new Date();
return newDate;
}
任何帮助,将不胜感激。谢谢!
最佳答案
您的就绪功能有点差,应该是:
$(document).ready(function(){
$("#date").html("Date of Report: " + currentDateNow());
});
关于javascript - 附加<th>的innerhtml,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29373456/