得到网址&点击即可更改

时间:2017-07-15 13:59:59

标签: javascript url

我想获取当前页面网址(http://example.com/en-user/?1234)并点击按钮点击“用户”改为“用户”并转到该页面,因此网址应该像“{{3 }}”。提前谢谢。

1 个答案:

答案 0 :(得分:0)

非常简单...在按钮上设置点击事件处理程序,获取位置,调整字符串,设置URL。

// Get button reference
var btn = document.getElementById("btn");

// Set up click event handler
btn.addEventListener("click", function(){
  // Get current URL
  var url = window.location.href;

  console.log(url);

  // Change a portion of the string
  // Obviously, change the values to suit your needs.
  url = url.replace(".net", ".com");

  console.log(url);

  // Navigate to new URL
  window.location.href = url;

});
<button id="btn">Change URL</button>