如何在 js 中向 href 添加额外的 get 参数?我想删除 url 中的 refer_id=xxx ,然后添加一个新的 refer_id=xxx 获取参数。网址不是唯一的。
有什么快速的方法吗?
// http://www.newpm.com/
// http://www.newpm.com/?refer_id=100
// http://www.newpm.com/index.php?main_page=product_info&refer_id=100
// http://www.newpm.com/index.php?main_page=product_info&refer_id=100&from_home
// http://www.newpm.com/index.php?refer_id=100&from_home
例如:
// http://www.newpm.com/index.php?main_page=product_info&refer_id=100&from_home
替换refer_id=xxx得到:
// http://www.newpm.com/index.php?main_page=product_info&&from_home
替换的url有“&&”,然后添加一个新的refer_id
// http://www.newpm.com/index.php?main_page=product_info&from_home&refer_id=200