gpt4 book ai didi

javascript - html 按钮重定向到 <input> 中指定的页面

转载 作者:行者123 更新时间:2023-12-03 03:38:36 25 4
gpt4 key购买 nike

我需要将用户重定向到输入标记中指定的页面。

<div id="center">
<input type="text" id="username" placeholder="Username">
<button onclick="location.href='rooms/VALUE'" id="connect">EnterRoom</button>
</div>

因此,如果按钮标签内显示“VALUE”,它将重定向到 mysite.com/rooms/VALUE

“VALUE”输入将由用户在输入标记内输入。

有什么简单的方法可以做到这一点吗?

最佳答案

您可以使用

获取输入的值
document.getElementById('username').value

<div id="center">
<input type="text" id="username" placeholder="Username">
<button onclick="location.href='rooms/' + document.getElementById('username').value" id="connect">EnterRoom</button>
</div>

关于javascript - html 按钮重定向到 &lt;input&gt; 中指定的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45738731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com