按下按钮后将输入框的值作为参数添加到 URL?
我有一个输入字段和 2 个按钮,每个按钮执行不同的功能。我希望其中一个按钮获取输入字段的值并将其添加到按钮应访问的指定 Url(作为参数)。
因此,如果插入到框中的值是“dog”,那么单击按钮后,URL 应该是 "/go_somwhere?value=dog"
我可以只用 html 来完成它还是需要 ruby方法?
我正在使用导轨。
谢谢
I have one input field and 2 buttons, each button performs a different function. i want one of the buttons to take the value of the input field and add it to a specified Url (as a param) that button should go to.
so if the value inserted in to the box is "dog" then after clicking the button the URL should be "/go_somwhere?value=dog"
can i do it in just html or do i need a ruby method?
i'm using rails.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来您需要在客户端通过 javascript 来执行此操作。该按钮应该有一个附加到其单击事件的函数。该函数应该从输入框中读取值并更改 url (window.locations)。
Seems like you would need to do this via javascript on the client side . The button should have a function attached to its click event . This function should read the value from the input box and change the url ( window.locations ) .