1.angular router
reloadonsearch:true(default) | false
2.改變url的hash
window.history.pushstate({}, null, '?tab=home');改方法可以直接改變url的hash,並加入history;
當前url為http://localhost:8888
執行前:http://localhost:8888
window.history.pushstate({}, null, '?tab=home');
執行後:http://localhost:8888?tab=home
window.location.hash 取或者設定url的hash值,直接在url上面加入hash:
當前url為http://localhost:8888
執行前:http://
localhost:8888
window.location.hash = 'name=test';
執行後:http:
//localhost:8888?tab=home#name=test
window.location.search 取或者url 通過pushstate的值,方法類似window.history.pushstate({}, null, '?tab=home');
Loadrunner解決啟動瀏覽器後頁面顯示空白
2018年5月20日,今天照常開啟loadrunner準備學習,在錄製的時候卻出現了乙個問題,瀏覽器可以啟動,但是程式頁面缺是載入不出來,主要症狀體現為 瀏覽器頁面顯示空白,長時間載入後就會報頁面停止載入。軟體環境 lr11,ie9 1.可能安裝了多個瀏覽器,解決方法開啟ie選項 高階 去掉 啟用第...
瀏覽器頁面載入效能
window.performance.timing返回網頁中所有資源和標記的資料 window.performance.getentries 根據entrytype返回資料 window.performance.getentriesbytype window.performance.getentri...
瀏覽器渲染頁面過程
今天在某論壇上看到這麼乙個問題。現在頁面有個空div,我用js向裡面插入一段html,然後獲取div的高度,發現有時候得到的div的高度不準確,請問各位有什麼方法解決一下。那麼為了更好的理解這個問題,咱們今天來聊聊瀏覽器的渲染過程 解析html 解析css 構建render tree 布局 layo...