标签: javascript internet-explorer
HTML:
<body> <script> alert('hello1'); </script> <script src="/js/ie.js"></script> </body>
ie.js:
alert('hello2');
IE7仅警告hello1,它不会警告hello2。例如,它适用于IE8。通过MS自己的VM modern.ie图像在localhost上开发。
hello1
hello2