gpt4 book ai didi

javascript - 验证 10 个字符,只能是数字,然后重定向到网址

转载 作者:行者123 更新时间:2023-11-28 21:14:15 25 4
gpt4 key购买 nike

所以我需要发生什么:

用户输入 10 位数字(仅限数字)并单击“提交”提交后 – 用户被重定向到另一个登陆页面。

这是我所做的......及其重定向,但没有真正验证这 10 个字符,或者它们是数字。我有另一个脚本可以做到这一点,但不能同时使用,因为它们使用不同的编程语言。

<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"></script>
<script>
$(function() {
$('#myform').submit(function() {
var myField = $('#myInput').val();
if (myField == '') {
alert('10 digit code is required');
return false;
}
// at this stage we know that the form is valid as the user
// filled the required myField. Now we can redirect
window.location.href = 'http://www.corel.com';
return false;
});
});

</script>

</head>

<body>
<form id="myform" name="form1" method="post" action="">
<label for="button"></label>
<label for="myInput"></label>
<input name="myInput" type="text" id="myInput" value="" size="12" maxlength="10" />
<input type="submit" name="button" id="button" value="Submit" />
</form>

最佳答案

您可以检查字符串是否是由 10 个字符组成的数字字符串,如下所示:

if (/^\d{10}$/.test(someValue)) {
// it is OK
}
else {
// not OK
}

关于javascript - 验证 10 个字符,只能是数字,然后重定向到网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8011291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com