一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

return false;和e.preventDefault();的區別

Have you ever seen those two things (in the title) being used in jQuery? Here is a simple example:
復制代碼 代碼如下:
$("a").click(function() {
$("body").append($(this).attr("href"));
return false;
}

That code would append the href attribute as text to the body every time a link was clicked but not actually go to that link. The return false; part of that code prevents the browser from performing the default action for that link. That exact thing could be written like this:
復制代碼 代碼如下:
$("a").click(function(e) {
$("body").append($(this).attr("href"));
e.preventDefault();
}

So what's the difference?


The difference is that return false; takes things a bit further in that it also prevents that event from propagating (or “bubbling up”) the DOM. The you-may-not-know-this bit is that whenever an event happens on an element, that event is triggered on every single parent element as well. So let's say you have a box inside a box. Both boxes have click events on them. Click on the inner box, a click will trigger on the outer box too, unless you prevent propagation. Like this:

演示地址:http://css-tricks.com/examples/ReturnFalse/
So in other words:
復制代碼 代碼如下:
function() {
return false;
}

// IS EQUAL TO

function(e) {
e.preventDefault();
e.stopPropagation();
}

It's all probably a lot more complicated than this and articles like this probably explain it all a lot better.


參考:

1.The difference between ‘return false;' and ‘e.preventDefault();'
2.Event order

測試代碼打包下載

JavaScript技術return false;和e.preventDefault();的區別,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 成人性色大片 | www.91在线 | 久久精品成人国产午夜 | 色欧美在线 | 国内精品国语自产拍在线观看91 | 曰韩美女一级视频 | 国产一级特黄aa级特黄裸毛片 | 久久ww精品w免费人成 | 天天干天天干天天天天天天爽 | 国产剧情在线视频 | 日韩成人一级 | 成年美女黄网站色大片视频 | 色天天综合色天天碰 | 精品国产精品国产 | 天天更新天天久久久更新影院 | 91插插插网站 | 六月婷婷久久 | 看免费5xxaaa毛片30厘米 | 欧美极品欧美日韩 | 国产福利小视频高清在线观看 | 看一级毛片国产一级毛片 | 日韩在线不卡一区在线观看 | 九月色婷婷 | 黄片毛片在线观看 | 狠狠做狠狠做综合日日 | 四虎精品久久久久影院 | 苦瓜se在线精品视频 | 日本高清一区二区三区水蜜桃 | 久久怡红院亚欧成人影院 | 国产精品福利在线观看 | 日韩精品首页 | 亚洲精品成人久久久影院 | 久久免费福利视频 | 好吊在线| 我要看三级全黄 | 日本精品一区二区三区在线 | 黑人美国一级一级爰片 | 久久青草视频 | 最近中文字幕完先锋资源 | 美女被免费视频网站九色 | 国产桃色在线成免费视频 |