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.
我想知道是否有可能做这样的事情。我想要文本框的 keyup 函数的能力,但我希望它也可以与复选框一起使用,而不必编写另一个函数
$('#title, #business').keyup.change(function() {
使用bind()或on():
bind()
on()
$('#title, #business').on('keyup change', function() { // do something }); // Deprecated since jQuery 1.7 $('#title, #business').bind('keyup change', function() { // do something });
AhamedMustafaM +1是对的:从 jQuery 1.7 开始,on()是添加事件侦听器的首选方法。
使用 jQueryon函数,如
on
$("input .someclass").on({ keyup: function(){ $(this).toggleClass("active"); }, change: function(){ $(this).addClass("inside"); }, mouseleave: function(){ $(this).removeClass("inside"); } });
截至jQuery v1.7,on是添加偶数处理程序的首选方法
jQuery v1.7