打开窗口自我,并为新窗口执行javascript

时间:2013-03-13 23:30:07

标签: javascript html window

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

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

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

它工作得很好。

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

如何加载新页面并为新页面执行其他一些功能?是否有任何东西可以使其余代码等到页面加载?

1 个答案:

答案 0 :(得分:-1)

使用jquery函数document.ready:

$(document).ready(function(){
    // enter the code that needs to bee xecuted after the page is loaded
})