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
應該被觸發並彈出該值,但是出現了錯誤。它是什麼?.trigger()a .on()
你能重新在http://jsfiddle.net這個問題? – JesseBuesking 2011-12-19 05:18:25
http://jsfiddle.net/6ZHy4/ – Michelle 2011-12-19 05:22:09