0
keyCode值,我有下面的代碼如何查找輸入事件
<input type="text" oninput="OnInput (event)" onpropertychange="OnPropChanged (event)" value="Text field" />
function OnInput (event) {
alert ("The new content: " + event.target.value);
}
// Internet Explorer
function OnPropChanged (event) {
if (event.propertyName.toLowerCase() == "value") {
alert ("The new content: " + event.srcElement.value);
}
}
在oninput()和onropertychange事件,沒有能夠得到的鍵碼。
我需要找到在文本框中鍵入的數字的ASCII值。 例如,如何找到編號爲5的密鑰代碼值。 是否有任何inbuild javascript方法可以找到它?或任何其他解決方案
你好粘膠 我問查詢找到在輸入數字 –