使用jQuery 1.9.1参数不会从触发器传递给click处理程序,就像使用jquery 1.7.2一样,它们很好地传递。
示例:
<!doctype html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<!--script src="http://code.jquery.com/jquery-1.7.2.min.js"></script-->
</head>
<body>
<input id="test" type="checkbox">
<button id='trigger'>trigger</button>
</body>
<script>
$('#test').bind('click',
function (e, data){
if (typeof data == 'undefined') {
alert('no data passed');
return;
}
alert('first passed=' + data.passed1 + ' second passed='+data.passed2);
});
$('#trigger').click(
function (e){
$('#test').trigger('click',{passed1:'first',passed2:'second'});
});
</script>
</html>
当我使用jquery-1.7.2.js时,它仍能正常工作。
我错过了什么?请帮帮我。
答案 0 :(得分:7)
这是一个众所周知的问题:http://bugs.jquery.com/ticket/13353
解决方法是使用.triggerHandler()代替例如:
$('#trigger').click(function (e) {
var $test = $('#test');
$test
.prop('checked', !$test.prop('checked'))
.triggerHandler('click',{passed1:'first',passed2:'second'});
});
JSFiddle:http://jsfiddle.net/antishok/xHVDx/2
在任何情况下触发点击都是邪恶的(如果只是为了运行回调)