第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 javascript 和 html 在輸入外部單擊后附加一個(gè)函數(shù)

使用 javascript 和 html 在輸入外部單擊后附加一個(gè)函數(shù)

達(dá)令說(shuō) 2023-09-28 09:37:49
我的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 = "";}}我想要的是在用戶單擊輸入字段外部后檢查手機(jī)的格式?
查看完整描述

3 回答

?
HUH函數(shù)

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


查看完整回答
反對(duì) 回復(fù) 2023-09-28
?
SMILET

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">


查看完整回答
反對(duì) 回復(fù) 2023-09-28
?
翻過(guò)高山走不出你

TA貢獻(xiàn)1875條經(jīng)驗(yàn) 獲得超3個(gè)贊

我相信你正在尋找的是

<input?type="text"?onfocusout="myFunction()">
查看完整回答
反對(duì) 回復(fù) 2023-09-28
  • 3 回答
  • 0 關(guān)注
  • 171 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)