如何在jquery中将变量附加到url?
如何将 variable/text
附加到 jquery 中的属性 href
?
How can I append variable/text
to the attribute href
in jquery ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将 variable/text
附加到 jquery 中的属性 href
?
How can I append variable/text
to the attribute href
in jquery ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可以使用
.attr()
函数:或者:
You could use the
.attr()
function:or:
在根据您要做的其他示例将项目附加到 url 之前,您需要检查是否已经存在查询字符串。
You need to check if there is already a query string before appending items to the url based on the other examples you'd do something like.
如果您重复使用它,请尝试 .attr() 如下:
If you use it repeatedly try .attr() as: