これらのうちどれが速いのか不思議ですか?jquery selector performace
$('ul.dropdown a').first().click(function(event) {
event.stopPropagation();
return false;
});
または
$('.dropdown > li > a').click(function(event) {
event.preventDefault();
});
任意の違いはありますか?
http://jsperf.com/ – j08691
秒1は... –
まあ速くなり、彼らはマシンの違いがありますならば、私は疑う、また別物... – gdoron