用jquery 的load方法匯入本地檔案,瀏覽器會出現跨域問題。
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
解決辦法:
右鍵桌面chrome瀏覽器的屬性,
在目標處:"C:\Program Files\Google\Chrome\Application\chrome.exe" --allow-file-access-from-files
新增最後這個--allow-file-access-from-files。
然後重啟瀏覽器。就可以了。