服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > dedecms教程 >

织梦dedecms怎样让在自定义表单显示时间

时间:2015-10-02 12:59来源:未知 作者:最模板 点击:
织梦dedecms怎样让在自定义表单显示时间,一下是部分代码,红色部分,即为调用的时间代码。。 图1 图2 图3 ----------------------------------------------------------------------------- 首先自定义表单

织梦dedecms怎样让在自定义表单显示时间,一下是部分代码,红色部分,即为调用的时间代码。。

图1

织梦dedecms怎样让在自定义表单显示时间

图2

织梦dedecms怎样让在自定义表单显示时间

图3

-----------------------------------------------------------------------------

首先自定义表单,然后添加字段,比如联系人(单行文本),联系方式(单行文本),地址(单行文本),留言内容(单行文本),留言时间(单行文本)等字段

注意:留言时间这里不要选择“时间类型”,选择默认的“文本形式”就可以。

自定义表单在模板中修改如下:

<form action="/plus/diy.php" enctype="multipart/form-data" method="post" name="form"

onsubmit="return CheckForm();">

<input type="hidden" name="action" value="post" />

<input type="hidden" name="diyid" value="1" />

<input type="hidden" name="do" value="2" />

<table width="100%" border="0" cellpadding="0" cellspacing="0">

<tr>

<td>提交时间</td>

<td><input name="mytime" value="" type="text"  id="mytime"  /><!-- 如不需要在前台显示的话可以修改type="hidden" -->

<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("mytime").value=str;

}

</script>

</td>

</tr>

<tr><td><input type="hidden" name="dede_fields" value="mytime,textchar" />

<input type="hidden" name="dede_fieldshash" value="849a871768b5942ee259e8f7af736194" />

<label>

<input class="btn_tj" type="submit" name="Submit" value=" 提交" />

</label></td></tr>

</table>

</form>

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容