Firefox继续在后台加载iframe。 但Chrome会停止加载任何内容,直到单击警告确定按钮
以下是示例代码
<!DOCTYPE html>
<html>
<head>
<script>
setTimeout(function(){ alert("Hai") },10);
</script>
</head>
<body>
<iframe src="http://www.w3schools.com/jQuery/" style="margin-top:100px" height="100" width="100"></iframe>
</body>
</html>