我有一个包含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>