织梦dede自定义表单添加提交时间的方法 时间:2018-03-26 00:00 来源: 点击:次 1、添加自定义字段:提交时间-->tijiaoshijian 2、在模版<form></form>中添加如下代码即可 <input name="tijiaoshijian" value="" type="hidden" id="tijiaoshijian" /> <script type="text/javascript"> window.onload = function(){ var nowDate = new Date(); var str = nowDate.getFullYear()+"-"+(nowDate.getMonth() + 1)+"-"+nowDate.getDate()+" "+nowDate.getHours()+":"+nowDate.getMinutes()+":"+nowDate.getSeconds(); document.getElementById("tijiaoshijian").value=str; } </script> (责任编辑:admin)