Place the below function in your js file. function isNumber(text){ if(text) { var reg = new RegExp('[0-9]+$'); return reg.test(text); ...
確定! 回上一頁