織夢(mèng)自定義表單提交驗(yàn)證手機(jī)號(hào)郵箱等方法
時(shí)間: 2020-09-10 09:21
閱讀: 次
作者:素材無(wú)憂(yōu)網(wǎng)
先貼出js代碼
<script>
function check()
{
name=document.getElementByIdx_x_x("fzrxm").value;
if(name=="")
{
alert("請(qǐng)輸入姓名!")
return false;
}
re = /^1\d{10}$/
tel=document.getElementByIdx_x_x("lxdh").value;
if (re.test(tel)) {
} else {
alert("請(qǐng)輸入正確的手機(jī)號(hào)!");
return false;
}
em = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
eml=document.getElementByIdx_x_x("lxqq").value;
if(em.test(eml)){
}else{
alert("請(qǐng)輸入正確的郵箱!");
return false;
}
}
</script>
下面,在form表單提交的時(shí)候 ,加上
<form action="/plus/diy.php" enctype="multipart/form-data" method="post" onsubmit="return check()">
很容易的方法,如果還不明白的朋友可以留言。
標(biāo)簽: