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

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

HTML 輸入模式驗(yàn)證

HTML 輸入模式驗(yàn)證

叮當(dāng)貓咪 2023-12-19 16:20:38
<form class="user" action="code_user.php" method="POST">  <div class="form-group">      <label>Enter Full Name</label>      <input class="form-control" pattern="^[a-zA-Z]+(( )+[a-zA-z]+)*$" oninvalid="setCustomValidity('Please enter in alphabets only. ')" type="text" name="name" autocomplete="off" required />   </div>    <button type="submit" id="submit"name="signup_btn"class="btn btn-primary btn-user btn-block"> Sign Up </button></form> 在 HTML 輸入驗(yàn)證中,我僅設(shè)置了字母模式。當(dāng)用數(shù)字輸入進(jìn)行測(cè)試時(shí),它顯示但是,如果我更正輸入的字母,它會(huì)再次顯示無(wú)效我必須再次刷新頁(yè)面才能輸入正確的格式,但它不會(huì)顯示 無(wú)效的。這是正常的嗎? 這是我的代碼:<div class="form-group">     <label>Enter Full Name</label>     <input class="form-control" pattern="^[a-zA-Z]+(( )+[a-zA-z]+)*$" oninvalid="setCustomValidity('Please enter in alphabets only. ')" type="text" name="name" autocomplete="off" required /></div>
查看完整描述

1 回答

?
慕碼人2483693

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

您沒(méi)有清除您的setCustomValidity()。如果您使用 setCustomValidity() 設(shè)置值,則該字段無(wú)效。只需將此類(lèi)屬性添加到您的輸入標(biāo)記即可:


oninput="setCustomValidity('')"

已在您的代碼中修復(fù):


<form class="user" action="code_user.php" method="POST">

    <div class="form-group">

        <label>Enter Full Name</label>

        <input class="form-control" pattern="^[a-zA-Z]+(( )+[a-zA-z]+)*$" oninvalid="setCustomValidity('Please enter in alphabets only. ')" oninput="setCustomValidity('')" type="text" name="name" autocomplete="off" required />

    </div>

    <button type="submit" id="submit"name="signup_btn"class="btn btn-primary btn-user btn-block"> Sign Up </button>

</form> 


查看完整回答
反對(duì) 回復(fù) 2023-12-19
  • 1 回答
  • 0 關(guān)注
  • 172 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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