中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

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();的區別,轉載需保留來源!

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

主站蜘蛛池模板: 久久久久久久久久久久久久久久久久久久 | 天堂成人国产精品一区 | 欧美久久视频 | 美女啪啪国产 | 亚洲逼院 | 毛色毛片免费看 | 国产粉嫩尤物极品99综合精品 | 午夜免费精品视频 | 成人a视频在线观看 | 中文字幕亚洲视频 | 精品电影 | 西西裸体做爰视频 | 91精品国产综合久久久动漫日韩 | 91亚洲国产| 欧美亚洲国产成人 | 成人在线观看亚洲 | 蜜桃五月天 | 婷婷毛片 | 亚洲一区中文字幕在线观看 | 欧美一级大片 | 亚洲精品久久久久久久久久久久久 | 国产精品日韩在线观看一区二区 | 麻豆changesxxx国产 | 免费在线看黄 | 91在线最新 | 亚洲 中文 欧美 日韩 在线观看 | 欧美 日韩 国产 成人 | 色香蕉在线 | 欧美电影免费观看高清 | 精品一区二区三区不卡 | 国产h在线| 免费的网站www | 久久久久国产一区二区三区 | 亚洲在线 | 综合激情久久 | 欧美性视频在线播放 | 日韩成人在线观看 | 91久久夜色精品国产网站 | 国产激情免费视频 | 精品国产乱码久久久久久丨区2区 | 欧美一区二区三区视频在线 |