2

我正在尝试使用以下代码打开一个新窗口。

$("#printBtn").on("click", function () {
     var w = window.open(this.href, "myWindowName", "width=800, height=600");
     $(w.document.body).children(".top-fixed-nav").remove();
     return false;
});

我遇到的问题是新窗口确实打开了所需的输出,但我正在使用的行$(w.document.body).children(".top-fixed-nav").remove();不起作用,即.top-fixed-nav没有删除。我也尝试将它绑定到ready事件

$("#printBtn").on("click", function () {
       var w = window.open(this.href, "myWindowName", "width=800, height=600");
    $(w).ready(function(){
        $(w.document.body).children(".top-fixed-nav").remove();
    });
    return false;
});

但这也没有用。谁能告诉我,我做错了什么?

更新

试过这个:

$("#printBtn").on("click", function () {
       var w = window.open(this.href, "myWindowName", "width=800, height=600");
//        $(w.document).ready(function(){
// and    $(w.document).load(function(){
        $(w.document.body).children(".top-fixed-nav").remove();
    });
    return false;
});

这两个也没有用。

4

3 回答 3

3
$("#printBtn").on("click", function () {
    var w = window.open(this.href, "myWindowName", "width=800, height=600");
    $(w).on("load", function(){
        $(w.document.body).children(".top-fixed-nav").remove();
    });
    return false;
});

试试这个,因为 onload 方法适用于窗口而不是文档。

于 2013-07-30T08:32:09.857 回答
2

尝试绑定加载而不是准备好:

$("#printBtn").on("click", function () {
    var w = window.open(this.href, "myWindowName", "width=800, height=600");
    $(w.document).on("load", function(){
        $(w.document.body).children(".top-fixed-nav").remove();
    });
    return false;
});

经过一番摆弄后得到了这个:

$("#printBtn").on("click", function () {
    var w = window.open(this.href, "myWindowName", "width=800, height=600");
    var callInterval = setInterval(childCall, 100);
    function childCall(){
        if (typeof w.jQuery !== "undefined") {
            //w.jQuery(document.body).children(".top-fixed-nav").remove();
            w.jQuery(".top-fixed-nav").remove();
            if(typeof callInterval !== "undefined")
                window.clearInterval(callInterval);
        }

    };
    return false;
});

试一试,让我们知道它是否有效:D

于 2013-07-30T07:40:47.703 回答
0

你可以试试这个:

var w = window.open(this.href, "myWindowName", "width=800, height=600");
w.document.$('body').children(".top-fixed-nav").remove();

或者:

$(".top-fixed-nav", w.document.body).remove();

注意:您可能必须引入延迟以允许加载窗口。

setTimeout('$(".top-fixed-nav", w.document.body).remove()', 5000);
于 2013-07-30T07:33:51.847 回答