var $forms = $('form.vote');
$forms.submit(function(){
return false;
});
$('.votebtn').on('click',function(){
$this.closest('form').trigger('vote_now', [$(this).val()]);
});
$forms.on('vote_now',function(value){
alert(value);
});
应该触发 vote_now
并弹出值,但是出了点问题。它是什么?
答案 0 :(得分:1)
$this
声明不正确。请在第6行使用$(this)
答案 1 :(得分:1)
您忘记了var $this = $(this);
,并且在事件对象之后将传递额外的参数。
<强> JSFIDDLE DEMO 强>
var $forms = $('form.vote');
$forms.submit(function(){
return false;
});
$('.votebtn').on('click',function(){
var $this = $(this); // declare variable
$this.closest('form').trigger('vote_now', [$(this).val()]);
});
// second argument, not first.
$forms.on('vote_now',function( e, value ){
alert(value);
});