Arce 发表于 2021-9-1 17:45:46

织梦dedecms自定义表单显示提交时间的方法

文章介绍

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>


文档来源:网络转载 http://www.adminbuy.cn/dedecmsjc/6700.html
页: [1]
查看完整版本: 织梦dedecms自定义表单显示提交时间的方法