我想從我當前的頁面url中刪除查詢字符串在JavaScript上的按鈕單擊 可以幫我使用上面的代碼。從javascript中的當前頁面url中刪除查詢字符串
回答
這裏,試試這個:
window.location = String(window.location).match(/(.*?)\?/)[1];
或者在評論
window.location = "http://localhost:2314/RewardPointsSystem/Admin/PointCalculations.aspx?date=20-Sep-2012%22".match(/(.*?)\?/)[1];
使用例如URL嘗試
var query = window.location.href.match(/^(.*)\?/);
if (query){
history.pushState(null, "", query[1]);
}
感謝您的回覆...但它不工作 – user1619874
@ user1619874這隻會在支持pushState的瀏覽器,即不是,即 – Musa
你忘了提及這是一個HTML5只有特點。 https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Manipulating_the_browser_history#Adding_and_modifying_history_entries –
你可以只修剪整個字符串後面的「? 「標記
你不能簡單地刪除查詢字符串,而無需重定向或重新加載頁面。所以你會改變位置或使用windows.location重定向。 getPathFromUrl()函數從給定的URL中移除查詢字符串。
下面是例U怎麼能做到這一點:
function getPathFromUrl(url) {
return url.split("?")[0];
}
var testurl='http://localhost:2314/RewardPointsSystem/Admin/PointCalculations.aspx?date=20-Sep-2012%22'
window.location=getPathFromUrl(testurl); // loads http://localhost:2314/RewardPointsSystem/Admin/PointCalculations.aspx
- 1. 從URL中刪除查詢字符串
- 2. 在頁面刷新之前從URL中刪除查詢字符串
- 3. 如何從c#2.0中刪除當前網頁查詢字符串的查詢字符串的特殊列表
- 4. 從URL段刪除查詢字符串
- 5. 從網址中刪除頁面+查詢字符串
- 6. 使用javascript從字符串(URL)中刪除子字符串(URL)
- 7. Apache mod_rewrite頁面前的查詢字符串,並刪除擴展
- 8. 如何在頁面加載後從url中刪除查詢字符串?
- 9. Zend Framework:將查詢字符串追加到當前頁面url
- 10. 從查詢字符串中刪除值
- 11. 從asp.net中刪除查詢字符串
- 12. 如何從url中刪除空的查詢字符串?
- 13. 從URL中刪除特定的查詢字符串
- 14. 從url中刪除特定的查詢字符串參數值
- 15. 獲取當前url查詢字符串
- 16. 如何在javascript中從url中刪除查詢字符串數組
- 17. 無法使用.htaccess從URL中刪除查詢字符串
- 18. 從url中刪除index.php和index.php查詢字符串
- 19. 從url中刪除整個查詢字符串?
- 20. 如何從url中刪除查詢字符串參數?
- 21. 如何從url中刪除查詢字符串?
- 22. 通過mod重寫從url中刪除查詢字符串
- 23. mod_rewrite:從URL中刪除查詢字符串?
- 24. htaccess - 重定向查詢字符串,並從URL中刪除它
- 25. mod_rewrite:從URL的末尾刪除查詢字符串URL
- 26. 刷新前查詢字符串刪除
- 27. 如何在ajax頁面中查詢查詢字符串或URL?
- 28. 從字符串中刪除前面的字符?
- 29. 如何從查詢字符串參數(Crosscripting)中刪除javascript?
- 30. Zend從分頁查詢字符串中刪除參數
其不工作... – user1619874
好吧,你有一個例子,我可以看看? –
這是我想要修改的url「http:// localhost:2314/RewardPointsSystem/Admin/PointCalculations.aspx?date = 2012年9月20日」我想用url加載我的頁面「http:// localhost: 2314/RewardPointsSystem/Admin/PointCalculations.aspx「當我點擊按鈕 – user1619874