js截取url參數

舉例說明,好比http://localhost:2019/blog/getCommentListInfo?postId=1
如何獲取postId=1這個參數值呢?
很簡單經過下面代碼便可獲取,如:html

window.onload = function() { var postId = getUrlParms("postId"); getByIdCommentInfo(postId); } //獲取地址欄參數,name:參數名稱
function getUrlParms(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r != null) return unescape(r[2]); return null; }

參考資料:
js獲取url傳遞參數,js獲取url?號後面的參數:https://www.cnblogs.com/karila/p/5991340.htmlpost

相關文章
相關標籤/搜索