Created
November 8, 2013 08:20
-
-
Save sorrycc/7367909 to your computer and use it in GitHub Desktop.
测试 new Image() 请求是否会阻塞 window.onload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
new Image().src = "http://10.232.36.153/"; | |
window.onload = function() { | |
alert(1); | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment