2017-05-16 65 views
-2

我想知道的是點擊一個按鈕,輸入字段出現在哪裏,用戶可以輸入數字/字符到一個子頁面。例如:按鈕轉到「website.com」,用戶輸入「852147」,該按鈕將使用戶轉到「website.com/852147」。基本網址+用戶輸入=合併網址

+3

這將需要一些JavaScript - 希望可以幫助 –

回答

-1

您可以使用查詢字符串。希望這會對你有用。

+0

這不是一個完整的答案的問題。 –

0

可以通過添加的URL改變路徑名

<input type="text" id="inputid"> 
    <button onclick="window.location.pathname=document.getElementById('inputid').value"> 

使用window.location.href = 「website.com /」 +的document.getElementById( 'inputid')。值」

希望它有助於

感謝

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>