"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"html
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="c:\ChromeDebug" --test-type --disable-web-securityjquery
再打開頁面,發現能夠導入其餘HTML文件了web
HTML代碼chrome
<html lang="en"> <head> <meta charset="UTF-8"> <title>test</title> <script src="js/jquery.min.js"></script> </head> <body> world <div class="top"></div> <script> $(function(){ $(".top").load("test.html"); }); </script> </body> </html>