3 回答

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超4個(gè)贊
document.getElementById("Phone_num").value
和
document.getElementById("phone_num").value
有一個(gè)拼寫錯(cuò)誤,屬性值始終區(qū)分大小寫。id 值應(yīng)該是Phone_num
或者phone_num

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊
這是你想要的?
var input = document.getElementById("Phone_num");
input.addEventListener("blur", function(){
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 = "";
}
})
<input class="UserInfo" type="text" placeholder="phone Format" id="Phone_num">

TA貢獻(xiàn)1875條經(jīng)驗(yàn) 獲得超3個(gè)贊
我相信你正在尋找的是
<input?type="text"?onfocusout="myFunction()">
添加回答
舉報(bào)