jQuery event.result 属性
jQuery 教程
· 2019-03-11 06:42:27
实例
返回最后一次 click 事件的值:
$("button").click(function(){
return "Hello world!";
});
$("button").click(function(event){
$("p").html(event.result);
});
return "Hello world!";
});
$("button").click(function(event){
$("p").html(event.result);
});
定义和用法
event.result 属性包含由被指定事件触发的事件处理程序返回的最后一个值。
语法
event.result
| 参数 | 描述 |
|---|---|
| event | 必需。event 参数来自事件绑定函数。 |
点击查看所有 jQuery 教程 文章: https://codercto.com/courses/l/35.html
Web Design for ROI
Lance Loveday、Sandra Niehaus / New Riders Press / 2007-10-27 / USD 39.99
Your web site is a business--design it like one. Billions of dollars in spending decisions are influenced by web sites. So why aren't businesses laser-focused on designing their sites to maximize thei......一起来看看 《Web Design for ROI》 这本书的介绍吧!