数字のみを許可するように作成したいのでTextField
、次のコードを書きましたが、機能しません。
スクリプト コード:
function numberTextField(){
var keyAsciiValue=event.keyCode||event.which;
console.log(keyAsciiValue);
if (keyAsciiValue>=48&&keyAsciiValue<=57) {
console.log("This is Number");
return true;
}else{
console.log("This is Not a Number");
return false;
};
}
html コード:
<input type="text" onkeyup="numberTextField()" placeholder="NoOfRows" id="fieldsCount2"/>
誰でも私を助けることができます。
ありがとう。