使用 Javascript 组合两个 标签合而为一

发布于 2024-10-31 22:16:12 字数 277 浏览 0 评论 0原文

我有这样的东西:

<a href="#"> &plusmn;</a>
<a href="#"> Link Here</a>

我希望它看起来像:

<a href="#"> &plusmn; 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傾旎 2024-11-07 22:16:12

这里:

a1.textContent += a2.textContent;
a2.parentNode.removeChild(a2);

其中 a1a2 是对这两个 ANCHOR 元素的引用。 (一旦获得对第一个锚点的引用,您就可以获取对第二个锚点的引用,如下所示:a1.nextElementSibling。)

现场演示: http://jsfiddle.net/simevidas/QWQy8/

Here:

a1.textContent += a2.textContent;
a2.parentNode.removeChild(a2);

where a1 and a2 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/

不即不离 2024-11-07 22:16:12

更新:请参阅@Šime Vidas 的评论以了解更精简的方法。


现场演示

jQuery:

$('a + a').prev().html(function() {
    $(this).html($(this).html() + $(this).next().html());
    $(this).next().remove();
});

HTML:< /strong>

<a href="#"> ±</a>
<a href="#"> Link Here</a>

<a href="#"> ±</a>
<a href="#"> Another Link Here</a>

输出:

<a href="#"> ± Link Here</a>

<a href="#"> ± Another Link Here</a>

Update: See @Šime Vidas' comment for a slimmer method.


Live Demo

jQuery:

$('a + a').prev().html(function() {
    $(this).html($(this).html() + $(this).next().html());
    $(this).next().remove();
});

HTML:

<a href="#"> ±</a>
<a href="#"> Link Here</a>

<a href="#"> ±</a>
<a href="#"> Another Link Here</a>

Output:

<a href="#"> ± Link Here</a>

<a href="#"> ± Another Link Here</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文