如何使用 jquery 添加 href 的字符串值?
我有一个带有 href 的输入按钮。我需要在输入文本框中的 href 中的最后一个 / 之后添加一个字符串。如何使用 jquery 来实现这一点?这是代码:
//This is the Search Button
$('#switch-fighter-search-button-link').attr("href","/fighters/search/");
//This is the Input box
var sft = $('$switch-fighter-text').val();
I have a input button that has an href. I need to add a string after the last / in the href from an input text box. How can this get accomplish using jquery? Here is the code:
//This is the Search Button
$('#switch-fighter-search-button-link').attr("href","/fighters/search/");
//This is the Input box
var sft = $('$switch-fighter-text').val();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
这将在搜索框更改时更新
Try this:
This will update on the search box change
获取两个值并将它们连接起来(我猜用 ? 分隔),如下所示:
Grab both values and concatenate them (separated by a ?, I'm guessing), like so:
附加字符串。
Append the string.