2

私は持っている

newWindow=window.open(document.URL);
$('div#header',newWindow.document).hide();
$('div#footer',newWindow.document).hide();

しかし、それは機能していないようです。何か案は?

4

1 に答える 1

2

これを試して:

newWindow = window.open(document.URL);
$(newWindow).load(function() {
    $('#header', newWindow.document).hide();
    $('#footer', newWindow.document).hide();
});
于 2012-07-13T18:15:57.943 に答える