当前位置: 首页 > 站长资讯 > 正文页面

dedecms教程:自定义表单字段为必填项的方法

织梦dedecms自定义表单用的最多的就是制作留言板,报名等功能,但是添加的字段不填写就能提交,容易被恶意提交,为了防止这些,我们可以把这些字段选项设定为必填项。C79网站目录_网站网址收录与提交入口

方法一:PHP方法C79网站目录_网站网址收录与提交入口

1. 打开 plus/diy.php 文件C79网站目录_网站网址收录与提交入口

找到C79网站目录_网站网址收录与提交入口

$dede_fields = empty($dede_fields) ? '' : trim($dede_fields);C79网站目录_网站网址收录与提交入口

在其下边添加如下代码C79网站目录_网站网址收录与提交入口

//增加必填字段判断C79网站目录_网站网址收录与提交入口

if($required!=''){C79网站目录_网站网址收录与提交入口

if(preg_match('/,/', $required))C79网站目录_网站网址收录与提交入口

{C79网站目录_网站网址收录与提交入口

$requireds = explode(',',$required);C79网站目录_网站网址收录与提交入口

foreach($requireds as $field){C79网站目录_网站网址收录与提交入口

if($field==''){C79网站目录_网站网址收录与提交入口

showMsg('带*号的为必填内容,请正确填写', '-1');C79网站目录_网站网址收录与提交入口

exit();C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

}else{C79网站目录_网站网址收录与提交入口

if($required==''){C79网站目录_网站网址收录与提交入口

showMsg('带*号的为必填内容,请正确填写', '-1');C79网站目录_网站网址收录与提交入口

exit();C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

//endC79网站目录_网站网址收录与提交入口

2.在模版的表单里加<input type="hidden" name="required" value="name,sex" />其中 value 就是必须字段,多个用“,”隔开。C79网站目录_网站网址收录与提交入口

示例:C79网站目录_网站网址收录与提交入口

<form action="/plus/diy.php" enctype="multipart/form-data" method="post">C79网站目录_网站网址收录与提交入口

<input type="hidden" name="required" value="name,sex" />C79网站目录_网站网址收录与提交入口

<input type="hidden" name="action" value="post" />C79网站目录_网站网址收录与提交入口

<input type="hidden" name="diyid" value="1" />C79网站目录_网站网址收录与提交入口

<input type="hidden" name="do" value="2" />C79网站目录_网站网址收录与提交入口

<table style="width:97%;" cellpadding="0" cellspacing="1">C79网站目录_网站网址收录与提交入口

<tr>C79网站目录_网站网址收录与提交入口

<td align="right" valign="top">姓名:</td>C79网站目录_网站网址收录与提交入口

<td><input type='text' name='name' id='name' style='width:250px' class='intxt' value='' />C79网站目录_网站网址收录与提交入口

</td>C79网站目录_网站网址收录与提交入口

</tr>C79网站目录_网站网址收录与提交入口

<tr>C79网站目录_网站网址收录与提交入口

<td align="right" valign="top">性别:</td>C79网站目录_网站网址收录与提交入口

<td><select name='sex' style='width:50px'><option value='男'>男</option>C79网站目录_网站网址收录与提交入口

<option value='女'>女</option>C79网站目录_网站网址收录与提交入口

</select>C79网站目录_网站网址收录与提交入口

</td>C79网站目录_网站网址收录与提交入口

</tr>C79网站目录_网站网址收录与提交入口

<tr>C79网站目录_网站网址收录与提交入口

<td align="right" valign="top">电话:</td>C79网站目录_网站网址收录与提交入口

<td><input type='text' name='tell' id='tell' style='width:250px' class='intxt' value='' />C79网站目录_网站网址收录与提交入口

</td>C79网站目录_网站网址收录与提交入口

</tr>C79网站目录_网站网址收录与提交入口

<tr>C79网站目录_网站网址收录与提交入口

<td align="right" valign="top">地址:</td>C79网站目录_网站网址收录与提交入口

<td><input type='text' name='add' id='add' style='width:250px' class='intxt' value='' />C79网站目录_网站网址收录与提交入口

</td>C79网站目录_网站网址收录与提交入口

</tr>C79网站目录_网站网址收录与提交入口

<tr>C79网站目录_网站网址收录与提交入口

<td align="right" valign="top">备注内容:</td>C79网站目录_网站网址收录与提交入口

<td><input type='text' name='con' id='con' style='width:250px; height:100px' class='intxt' value='' />C79网站目录_网站网址收录与提交入口

</td>C79网站目录_网站网址收录与提交入口

</tr>C79网站目录_网站网址收录与提交入口

<input type="hidden" name="dede_fields" value="name2,text;sex2,select;tell2,text;add,text;con2,text" />C79网站目录_网站网址收录与提交入口

<input type="hidden" name="dede_fieldshash" value="78764e448024ba3607705cbf961ebf3f" /></table>C79网站目录_网站网址收录与提交入口

<div align='center' style='height:30px;padding-top:10px; padding-left:130px'>C79网站目录_网站网址收录与提交入口

<input type="submit" name="submit" value="提 交" class='coolbg' />C79网站目录_网站网址收录与提交入口

<input type="reset" name="reset" value="重 置" class='coolbg' />C79网站目录_网站网址收录与提交入口

</div>C79网站目录_网站网址收录与提交入口

</form>C79网站目录_网站网址收录与提交入口

方法二:JS方法C79网站目录_网站网址收录与提交入口

1、在要发布表单的模板中添加如下代码C79网站目录_网站网址收录与提交入口

<script src='你的路径/yanzheng.js' type="text/javascript"></script>C79网站目录_网站网址收录与提交入口

2、在你自定义的路径中新建yanzheng.js文件,然后复制以下内容粘贴保存C79网站目录_网站网址收录与提交入口

<!--C79网站目录_网站网址收录与提交入口

$(document).ready(function()C79网站目录_网站网址收录与提交入口

{C79网站目录_网站网址收录与提交入口

//验证C79网站目录_网站网址收录与提交入口

$('#complain').submit(function ()C79网站目录_网站网址收录与提交入口

{C79网站目录_网站网址收录与提交入口

if($('#name').val()==""){C79网站目录_网站网址收录与提交入口

$('#name').focus();C79网站目录_网站网址收录与提交入口

alert("用户名不能为空!");C79网站目录_网站网址收录与提交入口

return false;C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

if($('#tel').val()=="")C79网站目录_网站网址收录与提交入口

{C79网站目录_网站网址收录与提交入口

$('#tel').focus();C79网站目录_网站网址收录与提交入口

alert("联系电话不能为空!");C79网站目录_网站网址收录与提交入口

return false;C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

if($('#title').val()=="")C79网站目录_网站网址收录与提交入口

{C79网站目录_网站网址收录与提交入口

$('#title').focus();C79网站目录_网站网址收录与提交入口

alert("标题不能为空!");C79网站目录_网站网址收录与提交入口

return false;C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

if($('#text').val()=="")C79网站目录_网站网址收录与提交入口

{C79网站目录_网站网址收录与提交入口

$('#text').focus();C79网站目录_网站网址收录与提交入口

alert("具体内容不能为空!");C79网站目录_网站网址收录与提交入口

return false;C79网站目录_网站网址收录与提交入口

}C79网站目录_网站网址收录与提交入口

})C79网站目录_网站网址收录与提交入口

});C79网站目录_网站网址收录与提交入口

-->C79网站目录_网站网址收录与提交入口

注意:C79网站目录_网站网址收录与提交入口

$('#complain').submit(function () //complain为自定义表单的ID,如果生成的表单没有可以自行加上,即 id="complain".C79网站目录_网站网址收录与提交入口

if($('#name').val()==""){C79网站目录_网站网址收录与提交入口

$('#name').focus();//#name为要验证表单中的ID,如想让用户名不能为空,在后台用户名的数据字段名设为name,下同.C79网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章