只是好奇其中哪一个会更快?
$('ul.dropdown a').first().click(function(event) {
event.stopPropagation();
return false;
});
或者
$('.dropdown > li > a').click(function(event) {
event.preventDefault();
});
有什么区别吗?
只是好奇其中哪一个会更快?
$('ul.dropdown a').first().click(function(event) {
event.stopPropagation();
return false;
});
或者
$('.dropdown > li > a').click(function(event) {
event.preventDefault();
});
有什么区别吗?