1

我正在尝试使用 ajax 将 html 动态加载到弹出窗口中:

$('body').load( new_url, function (responseText, textStatus, XMLHttpRequest ) { ... } );

它工作正常,但它不会将 html 加载到子窗口中,而是将其加载到打开的窗口中。如果我有对子窗口“win”的引用,我该怎么做这样的事情:

win.$( 'body' ).load...

目前,这给出了一个错误说法win.$ is not a function

谢谢!

4

2 回答 2

1

试试这个::

$("body", win.document).load(URL, function() {
    // do your stuff
});

希望这会有所帮助!

于 2013-01-07T16:25:20.087 回答
0

你应该像这样使用它:

$('body', win.document).load...
于 2013-01-07T16:31:49.453 回答