Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试过parent.$ = $了,但我认为这不起作用,因为这只是对内部框架的 jQuery 的引用,任何选择器都只会搜索内部框架。
parent.$ = $
如果父窗口还没有 jQuery,我如何检测到它并将父窗口的$变量分配给它自己的 jQuery 副本?
$
如果你做这样的事情怎么办。(未经测试)。
$(document).ready(function(){ parent.document.jQuery || parent.document.write("<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'>"+"<"+"/script>"); });
(如果需要,将 CDN 替换为您自己的路径)