我需要禁用IOS上的鍵盤選項卡箭頭,使用JavaScript或甚至基於Web的應用程序元標記(如果有的話)。IOS禁用鍵盤選項卡箭頭
我已經嘗試了幾個選項,但在選擇菜單時遇到了問題。
我也無法將所有tabindex恢復爲-1,因爲這會損害桌面設備和其他設備的選項卡能力。
任何幫助,將不勝感激。
這是我爲跳轉到只讀的字段所做的一個例子。
$(document).ready(function() {
$('input, textarea, select').on('focus', function() {
$('input, textarea').not(this).attr('readonly', 'readonly');
$('select').not(this).attr("disabled", "disabled");
});
$('input, textarea, select').on('blur', function() {
$('input, textarea').removeAttr("readonly");
$('select').removeAttr("disabled");
});
});
你有麻煩與此在移動Safari瀏覽器? – pedrouan
@pedrouan是伴侶。 – DCdaz