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.
填充文本框时,我需要启用一个按钮。但是,当您使用浏览器自动完成功能填充文本框时,不会触发任何 javascript 事件,因此我需要一种方法来捕获此“事件”。我尝试了许多javascript事件,例如更改 焦点,但是当您在自动完成“组合”中选择和选项时,它们不会被触发。
$('#mytextbox').on('change', function(){ $('#mybutton').removeAttr('disbled'); });
您是否尝试过使用 jquery ui 自动完成功能?
http://jqueryui.com/autocomplete/#combobox