使用 jQuery 将属性 rel 替换为 href - 保留值
我有更多链接,例如:
<a rel="custom_link1_to_large_image">thumb</a>
有没有办法保留链接并改为使用 href: href="custom_link1_to_large_image"
我需要让它与灯箱一起使用,但我无法手动添加它,因为 NextGen 从 WP 自动生成。
谢谢你!
I have more links such:
<a rel="custom_link1_to_large_image">thumb</a>
Is there a way to preserve the links and have instead href:
href="custom_link1_to_large_image"
I need to have it working with a lightbox nad I do not have the ability to add that manually as are auto-generated by NextGen from WP.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以上将使所有链接来自:
成为
Above will make all links from:
Become
这应该可以做到:
This should do it:
我会这样做:
示例: http://jsfiddle.net/ patrick_dw/xnyr5/
如果你想保留
rel
,只需删除return null;
即可。I'd do it more like this:
Example: http://jsfiddle.net/patrick_dw/xnyr5/
If you want to retain the
rel
, just remove thereturn null;
.