0

我有这个函数,它在选中/取消选中复选框时调用其他一些函数:

 $page = $(event.target);

 $page.find(".checkboxes").change(function () {
     if (this.checked) {
        checked(this);
     } else {
        unchecked();
    }
 });

但是,这在 IE 8 中似乎不起作用(Internet Explorer 8 似乎两次调用了我的选中/未选中函数)。是否有另一个事件我可以调用一个复选框来更好地触发这些东西?

4

1 回答 1

1
    .focus(function(){})

或者你使用

    .click(function(){})
于 2013-08-14T23:16:29.463 回答