<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Validate Zip Code</title>
<script type="text/javascript">
function IsValidZipCode(zip) {
var isValid = /20132/.test(zip);
if (isValid)
alert('Valid ZipCode');
else {
alert('yep')
}
}
</script>
</head>
<body>
<form>
<input id="txtZip" name="zip" type="text" /><br />
<input id="Button1" type="submit" value="Check My Zipcode"
onclick="IsValidZipCode(this.form.zip.value)" />
</form>
</body>
</html>
我需要使用它来允许用户转到表示抱歉我们无法为您所在地区提供服务的页面或另一个表示我们可以根据他们的邮政编码为您所在地区提供服务的页面。
另外,如何在 isValid = 行中添加多个邮政编码?