可能没有解决方法。我正在使用一个jquery下拉菜单,在DOM准备好时加载。根据我的理解,这意味着它等待页面完全加载,直到它准备好被使用。
这对于菜单系统来说是个问题,因为人们希望在整个页面加载之前立即使用菜单。
这是我的网站,您可以在其中看到这种情况。 http://bit.ly/g1sn5t
这是我用于菜单的脚本
$(document).ready(function() {
function megaHoverOver(){
$(this).find(".sub").stop().fadeTo('fast', 1).show();
//Calculate width of all ul's
(function($) {
jQuery.fn.calcSubWidth = function() {
rowWidth = 0;
//Calculate row
$(this).find("ul").each(function() {
rowWidth += $(this).width();
});
};
})(jQuery);
if ( $(this).find(".row").length > 0 ) { //If row exists...
var biggestRow = 0;
//Calculate each row
$(this).find(".row").each(function() {
$(this).calcSubWidth();
//Find biggest row
if(rowWidth > biggestRow) {
biggestRow = rowWidth;
}
});
//Set width
$(this).find(".sub").css({'width' :biggestRow});
$(this).find(".row:last").css({'margin':'0'});
} else { //If row does not exist...
$(this).calcSubWidth();
//Set Width
$(this).find(".sub").css({'width' : rowWidth});
}
}
function megaHoverOut(){
$(this).find(".sub").stop().fadeTo('fast', 0, function() {
$(this).hide();
});
}
var config = {
sensitivity: 2, // number = sensitivity threshold (must be 1 or higher)
interval: 0, // number = milliseconds for onMouseOver polling interval
over: megaHoverOver, // function = onMouseOver callback (REQUIRED)
timeout: 0, // number = milliseconds delay before onMouseOut
out: megaHoverOut // function = onMouseOut callback (REQUIRED)
};
$("ul#topnav li .sub").css({'opacity':'0'});
$("ul#topnav li").hoverIntent(config);
});
function clearText(field){
if (field.defaultValue == field.value) field.value = '';
else if (field.value == '') field.value = field.defaultValue;
}
// JavaScript Document
无论如何要在其他所有事情之前加载它吗?
答案 0 :(得分:0)
您可以将这些脚本放在您想要的地方,以便了解您正在做什么。 HTML按顺序呈现,因此脚本无法获取稍后在文档中定义的DOM对象或js变量。这就是为什么我们通常使用document onload事件来执行init事务,因为所有元素都被加载了。
在这种情况下,我猜你可以在关闭ul#topnav标签之后立即放入没有document.ready的脚本。