1

单击按钮后,将打开一个新窗口,其中包含:

我在我的 javascript 中的代码是这样的:

$("#kitchen_menu a").bind('click',function(e){
    if(window.location.href = "products.html")
    {
        make_kitchen();
    }
});

它工作得很好。

我的问题是当我试图为我刚刚打开的这个新页面执行一些其他代码时,在这段代码之后。我意识到这一行下面的代码是在页面加载之前执行的。

我如何加载我的新页面并为新页面执行一些其他功能?有什么可以让其余代码等到页面加载完成的吗?

4

1 回答 1

-1

使用 jquery 函数 document.ready:

$(document).ready(function(){
    // enter the code that needs to bee xecuted after the page is loaded
})
于 2013-03-19T06:49:21.770 回答