作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 colorbox ,我只是得到未定义作为我的获取值?
$('.banner').colorbox({
opacity: 0.4,
href: 'dialogs/ban_add_edit.php?banner_to_edit='+$(this).attr('id')+'&typeofbanner='+$(this).attr('rel')
})
最佳答案
你可以这样做:
$('.banner').each(function() {
$(this).colorbox({
opacity: 0.4,
href: 'dialogs/ban_add_edit.php?banner_to_edit='+this.id+'&typeofbanner='+$(this).attr('rel')
});
});
在您当前的代码中,this
指的是您在其中运行它的任何内容,可能是一个 document.ready
函数(所以 this
= 文档
)。在此版本中,您将遍历 .banner
元素,而 this
指的是您在循环时所在的元素。
另一个变化是 this.id
,我经常这样做,但不需要 $(this).attr('id')
除非你需要稍后处理它被链接...this.id
原始 DOM 样式更短更快:)
关于javascript - 我如何从 jquery 插件中引用主题 $(this)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2621880/
我是一名优秀的程序员,十分优秀!