使用 Javascript 组合两个 标签合而为一
我有这样的东西:
<a href="#"> ±</a>
<a href="#"> Link Here</a>
我希望它看起来像:
<a href="#"> ± Link Here</a>
但是,由于 WordPress 内的限制,我有点不确定如何将它们与 JavaScript 结合起来。
I have something like this:
<a href="#"> ±</a>
<a href="#"> Link Here</a>
I want it to look like:
<a href="#"> ± Link Here</a>
However, due to limitations within WordPress I'm a little unsure how to combine them JavaScript wise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里:
其中
a1
和a2
是对这两个 ANCHOR 元素的引用。 (一旦获得对第一个锚点的引用,您就可以获取对第二个锚点的引用,如下所示:a1.nextElementSibling
。)现场演示: http://jsfiddle.net/simevidas/QWQy8/
Here:
where
a1
anda2
are the references to those two ANCHOR elements. (Once you get the reference to the first anchor, you can get the reference to the second one like so:a1.nextElementSibling
.)Live demo: http://jsfiddle.net/simevidas/QWQy8/
更新:请参阅@Šime Vidas 的评论以了解更精简的方法。
现场演示
jQuery:
HTML:< /strong>
输出:
Update: See @Šime Vidas' comment for a slimmer method.
Live Demo
jQuery:
HTML:
Output: