中文字幕日韩一区二区_国产一区二区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();的區別,轉載需保留來源!

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

主站蜘蛛池模板: 精品一区二区三区免费毛片 | 午夜视频一区 | 7777在线视频免费播放 | 欧美大片一区 | 欧美专区在线观看 | 日本免费一区二区三区四区 | 手机日韩| 北条麻妃一区二区三区在线观看 | 91精品久久久久久久久 | 中文字幕一区二区三区四区五区 | 亚洲精品美女在线观看 | 久久男人 | 久久久新视频 | 免费一级黄色录像 | 亚洲欧美久久 | 男人的天堂中文字幕 | 青青青伊人 | 久久精品小视频 | 天堂视频中文在线 | 日韩中文字幕高清 | 国产激情精品视频 | 久久久久国产一区二区三区 | 久久视频一区 | 精品熟人一区二区三区四区 | 亚洲精品乱码久久久久久按摩 | 亚洲精品乱码久久久久久9色 | av一级久久| 国产一级电影在线观看 | 4h影视 | 国产精品观看 | 黄色毛片在线看 | 日韩一区不卡 | 国产人久久人人人人爽 | 刘亦菲国产毛片bd | jdav视频在线观看免费 | 成人综合久久 | a a毛片 | 天天舔天天 | 国产传媒在线播放 | 国产在线视频在线观看 | 久久精品在线 |