网站地图    收藏   

主页 > 后端 > dedecms >

dedecms织梦自定义表单选项必填如何修改解决办法

来源:自学PHP网    时间:2014-11-30 17:03 作者: 阅读:

[导读] 方法一:我当时测试的时候没成功,首先我们要用一段php代码来判断验证必选项.1、我们先在plus/diy.php 文件中的的第40行下加上一下代码://增加必填字段判断if($required!=#39;#39;){if(preg_match.....

dedecms织梦自定义表单选项必填如何修改解决办法

方法一:我当时测试的时候没成功,首先我们要用一段php代码来判断验证必选项.

1、我们先在plus/diy.php 文件中的的第40行下加上一下代码:

  1. //增加必填字段判断 
  2. if($required!=''){ 
  3.  
  4. if(preg_match('/,/'$required)) 
  5.     { 
  6.         $requireds = explode(',',$required); 
  7.         foreach($requireds as $field){ 
  8.             if($$field==''){ 
  9.                 showMsg('带*号的为必填内容,请正确填写''-1'); 
  10.                 exit();  //phpfensi.com 
  11.             } 
  12.         } 
  13.     }else
  14.         if($required==''){ 
  15.             showMsg('带*号的为必填内容,请正确填写''-1'); 
  16.             exit(); 
  17.         } 
  18.     } 
  19. //end 

2、保存完成后,在表单页面找到这行代码.

<form action="/plus/diy.php" enctype="multipart/form-data" method="post" style="padding: 0px; margin: 0px; " >`````

在这行代码之下,加入代码:

<input type="hidden" name="required" value="content,name,tel" />````

方法二:我最终以另外的方式,实现了,在你的表单页面加上一个JQ和一个JS:

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js">

<script src='{dede:global.cfg_templets_skin/}/style/js/js.js' type="text/javascript">;

这个js的内容为:

  1. <!-- 
  2. $(document).ready(function() 
  3. //验证 
  4. $('#complain').submit(function () 
  5. if($('#yname').val()==""){ 
  6. $('#yname').focus(); 
  7. alert("姓名不能为空!"); 
  8. return false
  9. if($('#qq').val()==""
  10. $('#qq').focus(); 
  11. alert("手机号码不能为空!"); 
  12. return false
  13. if($('#tel').val()==""
  14. $('#tel').focus(); 
  15. alert("所选产品不能为空!"); 
  16. return false
  17. if($('#dizhi').val()==""
  18. $('#dizhi').focus(); 
  19. alert("地址不能为空!"); 
  20. return false
  21. }) 
  22.  
  23. }); 
  24. --> 
  25.  
  26.  <input type='text' name='ytel' id='ytel' style='width:250px'  class='intxt' value='' />* 
注:部分为你表单的ID(如果没有请在表单里面添加上)和必填ID.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论