gpt4 book ai didi

jquery - 使用 jQuery 将属性 rel 替换为 href - 保留值

转载 作者:行者123 更新时间:2023-12-01 05:07:41 25 4
gpt4 key购买 nike

我有更多链接,例如:

<a rel="custom_link1_to_large_image">thumb</a>

有没有办法保留链接并改为使用 href: href="custom_link1_to_large_image"

我需要让它与灯箱一起使用,但我无法手动添加它,因为 NextGen 从 WP 自动生成。

谢谢!

最佳答案

$("a").each(function(){
$(this).attr("href", $(this).attr("rel"));
});

以上将使所有链接来自:

<a rel="custom_links">..</a>

成为

<a rel="custom_links" href="custom_links">...</a>

关于jquery - 使用 jQuery 将属性 rel 替换为 href - 保留值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4233734/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com