100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > 织梦DedeCMS自定义表单JS 控制必填选项

织梦DedeCMS自定义表单JS 控制必填选项

时间:2019-04-18 11:39:28

相关推荐

织梦DedeCMS自定义表单JS 控制必填选项

function Checkfeedback() {

if (document.myform.name.value.length == 0) {

alert(‘NI的姓名 不能为空’);

document.myform.name.focus();

return false;

}

if (document.myform.qq.value.length == 0) {

alert(‘QQ号码 不能为空’);

document.myform.qq.focus();

return false;

}

if (document.myform.email.value.length == 0) {

alert(’email 不能为空’);

document.myform.email.focus();

return false;

}

if (document.myform.tel.value.length == 0) {

alert(‘手机 不能为空’);

document.myform.tel.focus();

return false;

}

}

<form action="http://127.0.0.1/plus/diy.php" method="post"

name=’myform’ onSubmit=’return Checkfeedback();’>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。