0
我正在尋找如何自定義選定文本框時在網站中顯示的軟鍵盤佈局的示例。我可以找到一個完全成熟的android應用程序的例子,但不是在一個網站內。使用javascript更改軟鍵盤佈局
我希望能夠在軟鍵盤打開時不顯示笑臉或數字/特殊字符鍵。
我正在尋找如何自定義選定文本框時在網站中顯示的軟鍵盤佈局的示例。我可以找到一個完全成熟的android應用程序的例子,但不是在一個網站內。使用javascript更改軟鍵盤佈局
我希望能夠在軟鍵盤打開時不顯示笑臉或數字/特殊字符鍵。
看看您是否可以右擊瀏覽器中的softkeyboard元素。
如果是這樣,點擊檢查元素,看看是否可以找到包含笑臉或 號碼/特殊字符鍵的元素。
然後,您可以構建一個腳本來隱藏它或在頁面加載時將其刪除。
使用jQuery它可能是這個樣子:
//note: You must place this code in a script tag after you have loaded JQuery.
$(document).ready(function(){//begin document ready function
//store the id or the class of the key to hide
var key = $("#nameOfKeyID");
//hide the key
$(key).hide();
//or remove the key
//this will remove it from the page
//and you will not be able to perform operations on it
$(key).remove();
});//end document ready function
感謝您的建議,但不幸的是我不能得到的元素。我會認爲有一個簡單的方法來編程修改佈局! – snakeeyes 2014-11-01 23:29:25