您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
织梦自定义表单必填项怎么修改
曹讯波2024-01-29 23:22:11dedecms教程已有人查阅
导读织梦自定义表单必填项修改方法如下:用php验证: 1. 在plus/diy.php 的第 40行下加 //增加必填字段判断
织梦自定义表单必填项修改方法如下:
用php验证:
1. 在plus/diy.php 的第 40行下加
value 就是必须字段 多个用 , 隔开。
案例分享:
用php验证:
1. 在plus/diy.php 的第 40行下加
//增加必填字段判断
if($required!=''){
if(preg_match('/,/', $required))
{
$requireds = explode(',',$required);
foreach($requireds as $field){
if($$field==''){
showMsg('带*号的为必填内容,请正确填写', '-1');
exit();
}
}
}else{
if($required==''){
showMsg('带*号的为必填内容,请正确填写', '-1');
exit();
}
}
}
//end
2.在模版的表单里加value 就是必须字段 多个用 , 隔开。
案例分享:
<form action="/plus/diy.php" enctype="multipart/form-data" method="post"><input name="required" value="name,qq" type="hidden"><input name="action" value="post" type="hidden"><input name="diyid" value="1" type="hidden"><input name="do" value="2" type="hidden"><table style="width:97%;" cellpadding="0" cellspacing="1"><tbody><tr><td align="right" valign="top">姓名:</td><td><input name="name2" id="name2" style="width:250px" class="intxt" type="text"></td></tr><tr><td align="right" valign="top">性别:</td><td><select name=" 2" style="width:50px"><option value="男">男</option><option value="女">女</option></select></td></tr><tr><td align="right" valign="top">电话:</td><td><input name="tell2" id="tell2" style="width:250px" class="intxt" type="text"></td></tr><tr><td align="right" valign="top">地址:</td><td><input name="add" id="add" style="width:250px" class="intxt" type="text"></td></tr><tr><td align="right" valign="top">备注内容:</td><td><input name="con2" id="con2" style="width:250px;height:100px" class="intxt" type="text"></td></tr><input name="dede_fields" value="name2,text; 2,select;tell2,text;add,text;con2,text" type="hidden"><input name="dede_fieldshash" value="78764e448024ba3607705cbf961ebf3f" type="hidden"></tbody></table><div style="height:30px;padding-top:10px;padding-left:130px;" align="center"><input name="submit" value="提 交" class="coolbg" type="submit"><input name="reset" value="重 置" class="coolbg" type="reset"></div></form>
以上就是在自定义表单里必填项的修改方法,如有别的方法欢迎大家留言交流。
本文标签:
很赞哦! ()
相关文章
随机图文
-
dedecms模板制作教程第三期channel标记使用说明及实例
本期讲解【channel 标记】,此标记主要用于获取栏目列表,适用范围:封面模板,列表模板,文档模板。一:使用说明【channel 标记】的使用范围是:封 -
织梦dedecms获取当前栏目路径及栏目名称实例代码
因为{dede:field name='arcurl'/} 这个获取当前页面路径的标签只能在内容页使用,栏目页没有效果的。所以在栏目页想获取当前栏目的路径及名称的话 -
dede织梦cms去除列表页文章标题加粗标签的方法
最近在用DEDECMS搭架网站的时候,我碰到这种情况:就是生成的列表模板中,列表文章标题全都加粗加黑了,这样看的特别扭。刚开始,我还以为是样式出了问题 -
dede织梦列表页标题加分页号码的实现方法
织梦教程:DEDE 5.7列表页,主要针对织梦列表页标题重复进行,优化涉及模版文件以及织梦功能文件修改。如果你使用织梦建站
留言与评论 (共有 条评论) |