求一个HTML网页,一个文本框,一个按钮,输入正确内容则跳转,不正确则不跳转切显示输入错误
发布网友
发布时间:2022-05-13 07:02
我来回答
共4个回答
热心网友
时间:2022-05-13 08:31
这是一个简单正则判断的html,按照你的要求,输入正确的邮箱则提示输入成功,并跳转链接,错误则提示输入错误
邮箱:<input type="text" id="2" /><input type="button" value="提交" onclick="mail()" />
<script>
function mail()
{
var patten2= new RegExp(/^[0-9|A-z|_]{1,17}[@][0-9|A-z]{1,3}.(com)$/)
var mail = document.getElementById("2").value;
if(patten2.test(mail))
{
alert("输入正确");
window.location.href="http://www.baidu.com";
}
else
{
alert("输入错误");
}
}
</script>
追答看满足你要求吗
热心网友
时间:2022-05-13 09:49
什么叫正确内容
热心网友
时间:2022-05-13 11:24
我可以帮你写,私聊我发给你吧