如何避免在iframe中包含相同的文件?

时间:2014-08-23 08:46:18

标签: javascript html html5 dom iframe

我有一个包含Javascript文件(pqrs.js)的网页,我在同一页面中有一个需要相同js文件的iframe,所以we need to include or download same file twice。有办法避免这种情况。 Iframe和主页的域名是相同的。 由于fooo.com/xyz包含iframe

foo.com/xyz

<!doctype>
<html>
<head>
<script src='http://localhost/code/public/js/imageuploader.js'></script>
</head>
<body>
    <iframe>
        <!doctype>
        <html>
        <head>
        <script src='http://localhost/code/public/js/imageuploader.js'></script>
        </head>
       <body>
       </body>
        </html>
    <iframe>
</body>
</html>

0 个答案:

没有答案