Skip to content

Instantly share code, notes, and snippets.

@sorrycc
Created November 8, 2013 08:20
Show Gist options
  • Save sorrycc/7367909 to your computer and use it in GitHub Desktop.
Save sorrycc/7367909 to your computer and use it in GitHub Desktop.
测试 new Image() 请求是否会阻塞 window.onload
<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