例
回到前面的單擊事件的價值:
$("button").click(function(){
return "Hello world!";
});
$("button").click(function(event){
$("p").html(event.result);
});
試一試» 定義和用法
該event.result屬性包含由指定的事件觸發的事件處理程序返回的最後一個/前值。
句法
event.result
參數 | 描述 |
---|---|
event | 需要。 該event的參數來自事件綁定功能 |