我正在尝试使用 ajax 将 html 动态加载到弹出窗口中:
$('body').load( new_url, function (responseText, textStatus, XMLHttpRequest ) { ... } );
它工作正常,但它不会将 html 加载到子窗口中,而是将其加载到打开的窗口中。如果我有对子窗口“win”的引用,我该怎么做这样的事情:
win.$( 'body' ).load...
目前,这给出了一个错误说法win.$ is not a function
。
谢谢!