基本网址+用户输入=合并网址

时间:2017-05-16 04:01:56

标签: javascript html hyperlink

我想弄清楚的是点击输入字段出现的按钮,用户可以输入数字/字符转到子页面。例如:按钮进入" website.com"并且用户输入" 852147",该按钮将用户带到" website.com/852147"。

3 个答案:

答案 0 :(得分:0)

您可以通过添加网址

来更改路径名
<input type="text" id="inputid">
    <button onclick="window.location.pathname=document.getElementById('inputid').value"> 

使用window.location.href =“website.com /”+ document.getElementById('inputid')。value“

希望有所帮助

感谢

答案 1 :(得分:0)

<input type="text" id="locNum" />
<button id="clickme">
Click Me
</button>

<script>
function fire() {
  var site = "http://website.com/";
  var locNum = document.getElementById("locNum").value;
  window.location.href = site + locNum;
  console.log(locNum);
}

document.getElementById("clickme").onclick = fire;
</script>

答案 2 :(得分:-1)

您可以使用查询字符串。希望这对你有用。