当我在我的网站上传页面时。 它没有被完全加载。 它被装入补丁。
//$("#idUpcmgMtch").append(nwhtml);
//var slyObj = scrlr(); slyObj.reload();
var actid="";
if(pagename="create-team"){$("li[upcomingmatch="+match_id+"]").addClass("active");
}
else{
$("#2").addClass("active");
}/////
这个脚本没用了...我已经添加了它bcoz它不接受我的问题。 建议我一些解决方案或链接,我可以参考..........我想让我的网站正确加载。
答案 0 :(得分:0)
这是因为浏览器按顺序加载东西,混合使用很多东西来获取屏幕上的内容。 一些步骤(按顺序)
1.Request-Response 2.Parse HTML and produce DOM 3.Recalculate Styles 4.Render Tree 5.Laying out the Document 6.Rasterization 7.Layering
顺便说一句,如果你想让事情一目了然,那么将body
设为display:none
并在document.ready
上display
阻止。
由于