Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经从链接http://keith-wood.name/keypad.html下载了一个 jquery 数字键盘插件。现在我想在页面加载时禁用一个键。我在各方面都很累,但我能找到任何解决办法。一旦页面被加载,该键应该被禁用。
提前致谢。
尝试
用于禁用键1
1
将此:contains(keypad-key text)用于数字 1:contains(1)
:contains(keypad-key text)
:contains(1)
$('#defaultKeypad').focus(function () { $('.keypad-key').filter(':contains(1)').attr('disabled', true); });