我的html是:
<input class="UserInfo" type="text" placeholder="phone Format" id="Phone_num">
这是我的js:
function checkPhoneFormat(){
const phone = document.getElementById("Phone_num").value;
const phoneFormatRex = /^\+?[0-9(),.-]+$/;
var match = phoneFormatRex.exec(phone);
if (match) {
document.getElementById("Phone_num").value = phone;
}
else {
document.getElementById("Phone_num").value = "";
}
}
我想要的是在用户单击输入字段外部后检查手机的格式?
HUH函数
SMILET
翻过高山走不出你
相关分类