vue.js用正規校驗的方法:先定義const;然後使用test方法,程式碼為【if(reg.test(data)){console.log("透過正規驗證");} else{console.log("未通過正規驗證")}}】。
本教學操作環境:windows10系統、vue2.9,本文適用於所有品牌的電腦。
【相關文章推薦:vue.js】
#vue.js用正規校驗的方法:
定義const
使用test 方法
testMethod(data){ const reg = /^[^\u4e00-\u9fa5]{1,20}$/; if(reg.test(data)){ console.log("通过正则验证"); }else{ console.log("未通过正则验证") } }
#相關免費學習推薦:javascript(影片)
以上是vue.js怎麼用正規校驗的詳細內容。更多資訊請關注PHP中文網其他相關文章!