HTML imports load order in Internet Explorer
问题 I have a web page that renders some Polymer 1.0 custom elements. In the head section of my index.html file I have the following: <link rel="import" href="my-elements.html"> <script src="script1.js"></script> <script src="script2.js"></script> my-elements.html references other HTML files (via HTML imports) which in turn references javascript files using standard script tags. With Chrome browser it all works as expected. The javascript files within my-elements.html load before script1.js and