dedecms织梦自定义表单选项必填如何修改解决办法_元曦血狼_新浪博客

方法一:我当时测试的时候没成功!!

 

首先我们要用一段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、保存完成后,在表单页面找到这行代码(注:文章的中文状态的《均为<)

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的内容为:

 

 

 

 

 

!--

$(document).ready(function()

{

//验证

$('#complain').submit(function ()

{

if($('#yname').val()==""){

$('#yname').focus();

alert("姓名不能为空!");

return false;

}

if($('#qq').val()=="")

{

$('#qq').focus();

alert("手机号码不能为空!");

return false;

}

if($('#tel').val()=="")

{

$('#tel').focus();

alert("所选产品不能为空!");

return false;

}

if($('#dizhi').val()=="")

{

$('#dizhi').focus();

alert("地址不能为空!");

return false;

}

})

 

});

-->

 

 《input type='text' name='ytel' id='ytel' style='width:250px'  class='intxt' value='' />*

  

注:红色部分为你表单的ID(如果没有请在表单里面添加上)和必填ID!

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值