IE6で c:\a.js が無くてもscript errorにさせない
1410 ワード
ダメだった書き方
<script src="c:\a.js"></script>
<script src="c:/a.js"></script>
<script src="file://a.js"></script>
<script src="file://c/a.js"></script>
<script src="file://c:/a.js"></script>
- IE11だと読めたりするが、IE6だと
script error
になったりした。:
記号が使えない様子。 -
c:\a.js
が存在するときはエラーが出ないが、存在しない場合、script error
になった。(IE6)
良かった書き方
<script src="file:///a.js"></script>
- IE6でもエラーなく行けた。
Author And Source
この問題について(IE6で c:\a.js が無くてもscript errorにさせない), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/84c6ab3c98fe214d456f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .