织梦DedeCMS怎样让在自定义表单显示时间,一下是部分代码,红色部分,即为调用的时间代码。。
图1
图2
图3
—————————————————————————–
首先自定义表单,然后添加字段,比如联系人(单行文本),联系方式(单行文本),地址(单行文本),留言内容(单行文本),留言时间(单行文本)等字段
注意:留言时间这里不要选择”时间类型”,选择默认的”文本形式”就可以。
自定义表单在模板中修改如下:
<form action="/plus/diy.php" enctype="multipart/form-data" method="post" name="form"
onsubmit=”return CheckForm();”>
提交时间 | window.onload = function(){var nowDate = new Date();var str = nowDate.getFullYear()+”-“+(nowDate.getMonth() + 1)+”-“+nowDate.getDate()+” “+nowDate.getHours()+”:”+nowDate.getMinutes()+”:”+nowDate.getSeconds();document.getElementById(“mytime”).value=str;} |