标签:style blog color 使用 io strong for div
1、通过返回false来取消默认的行为并阻止事件起泡。
jQuery 代码:
$("form").bind(
"submit",
function() {
return false;
}
);
2、通过使用 preventDefault() 方法只取消默认的行为。
jQuery 代码:
$("form").bind(
"submit",
function(event){
event.preventDefault(); //取消默认行为
}
);
3、通过使用 stopPropagation() 方法只阻止一个事件起泡。
jQuery 代码:
$("form").bind(
"submit",
function(event){
event.stopPropagation(); //阻止事件起泡
}
);
标签:style blog color 使用 io strong for div
原文地址:http://www.cnblogs.com/xinlinux/p/3926292.html