String.fromCharCode 函數如何在 html 輸入欄位中用於移動鍵盤
P粉896751037
P粉896751037 2023-09-01 09:45:04
0
1
733
<p>我想捕獲鍵盤按鍵代碼並將其轉換為字元。我正在使用 String.fromCharCode javascript 函數,但它僅適用於電腦鍵盤,不適用於移動鍵盤。任何幫助將不勝感激。 </p> <pre class="brush:php;toolbar:false;">$(".inputsmeter").keyup(function (e) { let key = e.which; let c = String.fromCharCode(key); alert(c); });</pre></p>
P粉896751037
P粉896751037

全部回覆(1)
P粉334721359

const inputElem = document.getElementById('input')
inputElem.addEventListener('input', (ev) => { 
  console.log(ev);
  alert(`e.data: ${ev.data}`);
});
<input id="input" type="text" placeholder="type something... " />

這在我的 iOS Safari 15 上按預期運行。 在輸入中鍵入 a 將看到警告列印:

ev.data: a
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板