POOPE 发表于 2021-9-1 19:23:30

织梦自定义表单提交验证手机号邮箱等方法

先贴出js代码

<script>
function check()
{
name=document.getElementByIdx_x_x("fzrxm").value;
if(name=="")
{
alert("请输入姓名!")
return false;
}

    re = /^1\d{10}$/
tel=document.getElementByIdx_x_x("lxdh").value;
    if (re.test(tel)) {
      
    } else {
      alert("请输入正确的手机号!");
return false;
    }

    em = /^()+\@(()+\.)+({2,4})+$/;
eml=document.getElementByIdx_x_x("lxqq").value;
    if(em.test(eml)){
   
    }else{
      alert("请输入正确的邮箱!");
return false;
    }


}
</script>


下面,在form表单提交的时候 ,加上

<form action="/plus/diy.php" enctype="multipart/form-data" method="post"onsubmit="return check()">

很容易的方法,如果还不明白的朋友可以留言。


文档来源:网络转载 http://www.adminbuy.cn/dedecmsjc/6664.html
页: [1]
查看完整版本: 织梦自定义表单提交验证手机号邮箱等方法