-1

我已经设置了这个简单的示例,但是对于我的一生,我无法弄清楚为什么它不起作用。

jQuery(function() {
$("#otherbutton").click(function () {
  $("#firstbutton").trigger('click');
  }) 
});

实时示例http://codepen.io/seraphzz/pen/mlsBf

4

1 回答 1

1

下面应该可以正常使用.on,在 jQuery 1.9.1 上测试过。

演示

$(function () {
 $('#otherbutton').on('click', function () {
  $('#firstbutton').trigger('click');
 });
 $('#firstbutton').on('click', function () {
  $(this).text('clicked!');
 });
});
于 2013-06-07T08:33:32.993 回答