在 WP 的 Colorbox 中向 im​​g 标签添加属性

发布于 2024-12-28 12:17:03 字数 573 浏览 1 评论 0原文

我想为 Colorbox 中的每个 img 标签添加一个附加属性 - 具体来说我想添加:draggable="false"。

我已经获得了正确的 JQuery UI 脚本,并通过在 NextGen Gallery 安装中添加属性来在画廊上使用它。如果我可以将属性添加到 Colorbox life 中的 img 标签中,那就太好了。colorbox

的输出看起来像这样:img class =“cboxPhoto”宽度=“321”高度=“480”src =“/wp-content/gallery/macros/02574_small.png”样式=“光标:指针; float: none;"。如果我直接在标签内添加属性(使用 Firebug),它就会起作用;我只是不知道在 js 中的哪里添加该属性。(从任何标准来看,我都不是 Javascript 或 JQuery 专家。 )

任何建议将不胜感激。

- Colorbox: 1.3.19
- jQuery UI: 1.8.17
- jQuery: 1.7.1
- NExtGEN Gallery: 1.9.2
- Lightbox Plus: 2.4.6
- WP: 3.3.1

I would like to add an additional attribute to each img tag in my Colorbox - specifically I would like to add: draggable="false".

I"ve already got the proper JQuery UI script and am using it on the gallery by adding the attribute in my NextGen Gallery install. If I could get the attribute added to the img tag within Colorbox life would be good.

The output from colorbox looks like this: img class="cboxPhoto" width="321" height="480" src="/wp-content/gallery/macros/02574_small.png" style="cursor: pointer; float: none;". If I add the attribute directly within the tag (using Firebug) it works; I just don't know where in the js to add that. (I'm not a Javascript nor JQuery expert by any standards.)

Any suggestions would be appreciated.

- Colorbox: 1.3.19
- jQuery UI: 1.8.17
- jQuery: 1.7.1
- NExtGEN Gallery: 1.9.2
- Lightbox Plus: 2.4.6
- WP: 3.3.1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

那请放手 2025-01-04 12:17:03

尝试将此脚本添加到您的文档中:

<script>
jQuery(document).bind('cbox_complete', function(){
    jQuery('.cboxPhoto').attr('draggable', 'false');
});
</script>

Try adding this script to your document:

<script>
jQuery(document).bind('cbox_complete', function(){
    jQuery('.cboxPhoto').attr('draggable', 'false');
});
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文