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

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

主站蜘蛛池模板: 男女一区二区三区免费 | 色婷婷一区二区三区四区成人 | 亚洲国产高清视频 | 中文字幕区 | 国内精品在线播放 | 99这里只有精品66视频 | 久久综合久久鬼 | 国产精品视频一区二区猎奇 | 在线观看国产小视频 | 亚洲欧美一区二区三区国产精品 | 国产精品麻豆一区二区三区 | 日韩一级二级三级 | 日韩美女在线视频 | 肉色丝袜一区二区高跟鞋 | 99久久好看一级毛片 | 国产成人精品日本亚洲网址 | 97香蕉超级碰碰碰久久兔费 | 亚洲香蕉久久 | 欧美性巨大欧美 | 永久免费av网站 | 五月婷婷激情六月 | 国产一区二区三区免费播放 | 精品一区二区三区在线观看 | 国产视频第一页 | 亚洲精品国产专区91在线 | 图片区小说区欧洲区 | 国产精品久久久久影院色 | 成人国产亚洲 | 狠狠色婷婷丁香六月 | 视频区小说区 | 国产精品视频九九九 | 国产精品久久新婚兰兰 | 五月天婷婷色 | 日本狠狠操 | 国产成人综合日韩精品婷婷九月 | 午夜久久久精品 | 国产精品合集一区二区三区 | 91系列在线观看 | 日日夜夜2017 | 久久综合九色综合97婷婷群聊 | 亚洲视频在线一区二区 |