正規表示式知識(+)

風靈使發表於2018-10-17

匹配Json值

sTitle": "(.*?)"

js 驗證文字框只能輸入數字和小數點

function check(e) { 
    var re = /^\d+(?=\.{0,1}\d+$|$)/ 
    if (e.value != "") { 
        if (!re.test(e.value)) { 
            alert("請輸入正確的數字"); 
            e.value = ""; 
            e.focus(); 
        } 
    } 
} 

第二步、呼叫【加粗的都要有】

<input  type="text" id="achievementScore" class="tab_bor2" name="scoreCheck.achievementScore"  
onblur="check(this)"  onkeyup="this.value=this.value.replace(/[^0-9.]/g,'')" />

Vs里正則匹配///內容

///(.{1,})

相關文章