我看一段代碼我沒有寫它包含:
jQuery(function($) {
$('#interaction').find('.item').hover(function() {
var $this = $(this);
$this.addClass('hover');
},
function() {
var $this = $(this);
$this.removeClass('hover');
})
.click(function() {
var $this = $(this);
var thisID = $this.attr('id');
//hide all visiable detail pages
resetpage($('.item-detail:visible'));
... etc.
通常我會寫我的代碼爲$(文件)。就緒({...})內運行;例如:
$(document).ready({
.click(function() {
var $this = $(this);
var thisID = $this.attr('id');
//hide all visiable detail pages
resetpage($('.item-detail:visible'));
... etc.
}
});
是什麼寫的功能或我可以互換使用他們的這兩種方式之間的差異(如果有的話) ?
的更多信息:http://stackoverflow.com/questions/10753306/why-readyhandler-is-not-recommended – 2012-07-12 22:13:23