我正在尝试编写一个 jquery 插件,但我对著名的“this”有疑问。
这是自定义插件的调用:
$('.selector').myPlugin({
test: $(this).attr('rel')
});
现在,在我的插件中的某个地方:
$.myPlugin = function (options) {
alert(options.test);
}
我的问题是:如何使用 $(this) 在插件中使用我的选择器的 Rel 属性?
前面的代码总是告诉我“this”是文档。
非常感谢