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

织梦dedecms中自定义表单必填项的设置方法

本文实例讲述了织梦dedecms中自定义表单必填项的设置方法。分享给大家供大家参考。具体实现方法如下:OrR网站目录_网站网址收录与提交入口

先说下,已经试过确定有效:OrR网站目录_网站网址收录与提交入口

1.编辑器打开/plus/diy.phpOrR网站目录_网站网址收录与提交入口

2.在40行左右找到此行代码:OrR网站目录_网站网址收录与提交入口

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

3.在这一行代码之下,加入代码,复制的话删掉代码中的空行.OrR网站目录_网站网址收录与提交入口

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

4.保存完成后,在表单页面找到这行代码:OrR网站目录_网站网址收录与提交入口

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

在这行代码之下,加入代码:OrR网站目录_网站网址收录与提交入口

<input type="hidden" name="required" value="数据字段名,数据字段名" />OrR网站目录_网站网址收录与提交入口

注意这行代码要修改下,根据你的表单所需要设置的必填项,例如设置“姓名”、“邮箱”为必填项.OrR网站目录_网站网址收录与提交入口

添加新字段--“表单提示文字”:姓名--“字段名称”:nameOrR网站目录_网站网址收录与提交入口

添加新字段--“表单提示文字”:邮箱--“字段名称”:emailOrR网站目录_网站网址收录与提交入口

此行代码应为:OrR网站目录_网站网址收录与提交入口

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

这样就把这两个选项设置为必填项了,如果没有填写就提交,会打开窗口提示“带*号的为必填内容,请正确填写”,当然,这一句话可以改成其它的文字.OrR网站目录_网站网址收录与提交入口

网上看到另一种方法,未测试,仅作为资料收藏.OrR网站目录_网站网址收录与提交入口

js方法:OrR网站目录_网站网址收录与提交入口

1.先在要发布表单的模板上加OrR网站目录_网站网址收录与提交入口

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

3.设置好后更新就可以看到效果了.OrR网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms建站有所帮助。OrR网站目录_网站网址收录与提交入口

  

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

相关文章