我正在尝试验证和调整用户输入的邮政编码以匹配以下格式:xxxxx或xxxxx-xxxx 如果用户输入的数字超过5位,是否可以使用javascript自动添加连字符(-)?
答案 0 :(得分:1)
肯定有!只是要检查输入的字符串有多少个字符,如果是5个,则在字符串中添加连字符:)
var input = document.getElementById("ELEMENT-ID");
input.addEventListener("input", function() {
if(input.value.length === 5) {
input.value += "-";
}
}
答案 1 :(得分:1)
安娜,
最好的方法是使用正则表达式。您需要的是:
^[0-9]{5}(?:-[0-9]{4})?$
您将使用十个类似的内容
function IsValidZipCode(zip) {
var isValid = /^[0-9]{5}(?:-[0-9]{4})?$/.test(zip);
if (isValid)
alert('Valid ZipCode');
else {
alert('Invalid ZipCode');
}
}
在您的HTML中这样称呼它:
<input id="txtZip" name="zip" type="text" /><br />
<input id="Button1" type="submit" value="Validate"
onclick="IsValidZipCode(this.form.zip.value)" />
有关正则表达式的更多信息,这是一篇好文章:
答案 2 :(得分:1)
尝试以下操作。
function add_hyphen() {
var input = document.getElementById("myinput");
var str = input.value;
str = str.replace("-","");
if (str.length > 5) {
str = str.substring(0,5) + "-" + str.substring(5);
}
input.value = str
}
<input type="text" id="myinput" value="a" OnInput="add_hyphen()"></input>
答案 3 :(得分:0)
您可以尝试使用以下简单的javascript函数
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<script>
function FN_HYPEN(){
var input = document.getElementById("USER");
if(input.value.length === 5) {
input.value += "-";
}
}
</script>
</head>
<body>
<INPUT ID="USER" TYPE="TEXT" onKeypress="FN_HYPEN();"/>
</body>
</html>