最近在用F12查看本身的項目發現有4個同樣的請求,有兩個失敗一個成功;失敗的請求點進去發現header有個Provisional headers are shown 最後網上查,本身調試,最後終於知道緣由了(當一個請求在請求時你立馬切換或重發這個請求,瀏覽器會認爲第一個請求就沒用了,自動斷開鏈接了)php
<html> <head> <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> </head> <body> <div id='frame'><iframe src="http://localhost:8082/test.php" id="test2"></iframe></div> </body> <script> function send(){ $('#test2').attr("src","http://localhost:8082/test2.php") } send(); send(); send(); </script> </html>