javascript - What is the difference between .click(...) and .live('click', ...)? - Stack Overflow

Consider the following code:HTML:<div id='button' class='enabled'>Press here&

Consider the following code:

HTML:

<div id='button' class='enabled'>Press here</div>
<div id='log'></div>

CSS:

#button {
    width: 65px;
    height: 25px;
    background-color: #555;
    color: red;
    padding: 10px 20px;
}
#button.enabled {
    color: #333;
}
#button.enabled:hover {
    color: #FFF;
    cursor: pointer;
}

JavaScript:

$(function() {
    $('#button.enabled').live('click', function() {    // (1)
    //$('#button.enabled').click(function() {          // (2)
        log('#button.enabled clicked');
    });
});
function log(str) {
    $('#log').append(str + '<br />');
    $('#button').toggleClass('enabled');
}

This code works as expected, i.e. log() is called only when enabled button is clicked.

But, if I replace (1) with (2), log() is called also when not enabled button is clicked.
Why is that ?
What is the difference between (1) and (2) ?

Consider the following code:

HTML:

<div id='button' class='enabled'>Press here</div>
<div id='log'></div>

CSS:

#button {
    width: 65px;
    height: 25px;
    background-color: #555;
    color: red;
    padding: 10px 20px;
}
#button.enabled {
    color: #333;
}
#button.enabled:hover {
    color: #FFF;
    cursor: pointer;
}

JavaScript:

$(function() {
    $('#button.enabled').live('click', function() {    // (1)
    //$('#button.enabled').click(function() {          // (2)
        log('#button.enabled clicked');
    });
});
function log(str) {
    $('#log').append(str + '<br />');
    $('#button').toggleClass('enabled');
}

This code works as expected, i.e. log() is called only when enabled button is clicked.

But, if I replace (1) with (2), log() is called also when not enabled button is clicked.
Why is that ?
What is the difference between (1) and (2) ?

Share Improve this question edited Sep 6, 2010 at 13:38 Nick Craver 631k138 gold badges1.3k silver badges1.2k bronze badges asked Sep 6, 2010 at 12:00 Misha MoroshkoMisha Moroshko 171k230 gold badges520 silver badges760 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 14

The difference is that .click() binds a click handler to the element. That's the most important thing, to the element, so whatever elements the $('#button.enabled') selector matches at the time it's bound, get bound...regardless of it the selector no longer matches later.

.live() checks the selector at the time of the event to see if it should run the handler...so changing the class does matter, since it no longer matches. The .live() handler lives on document and relies on event bubbling, so it must check the selector to see if it came from an element that it should execute the handler for.

In number 2 the click function is applied to all enabled buttons at that moment. So if a button is not enabled when the function is called it will never be enabled.

In number 1 the click function is applied when-ever needed -- that is if there is a change to the DOM that element is checked again to see if it need to have the click function applied to it.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1741374339a4343452.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信