如何使用 jQuery 将 DIV 标签中的文本添加到我的代码中的链接中
我目前有一张由我无法控制的 asp 编写的收据。我想用 jquery 复制发票,然后输入到链接中。我对 jquery 有非常基本的了解,并且知道这是可以做到的,但不知道从哪里开始。
<div id="orderid">34332</div>
<a href="http://mysite.com/order/------.html"></a>
我需要能够用订单 ID 替换 ------ 。
我知道我可以将订单 id 转换为变量,因为 div 标签附加了一个 id,但我完全不知道如何将其输入到 href
谢谢。
I currently have a receipt that is being written by asp which I cannot control. I want to copy the invoice with jquery and then input in into a link. I have a very basic understanding of jquery and know this can be done, but not sure where to start.
<div id="orderid">34332</div>
<a href="http://mysite.com/order/------.html"></a>
I need to be able to replace the ------ with the order id.
I know I can turn the order id into a variable as there is an id attached to the div tag, but am totally lost on how to input it into the href
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 div 后面始终有一个锚标记,则类似于以下内容。
或者可能不那么突兀:
Something like the following if there is always an anchor tag following the div.
Or probably a little less obtrusive: