admin管理员组文章数量:1397156
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)
?
2 Answers
Reset to default 14The 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.
本文标签: javascriptWhat is the difference between click() and live(39click39)Stack Overflow
版权声明:本文标题:javascript - What is the difference between .click(...) and .live('click', ...)? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741374338a2375161.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论