我正在编写一个在某些情况下存储一些数据的 jQuery 插件。
我想以一种非常灵活的方式编写它,我可以更改输入参数以获取插件存储的一些值。
解释:
当我调用 时$("#any").myPlugin()
,我的插件会在里面初始化创建一个div
和一些a
。单击 ana
将.index()
使用该.data()
方法存储它。如果我打电话$("#any").myPlugin("getSelection")
,那么我想获得存储的值.data()
。
我试过的:
(function ($) {
$.fn.myPlugin = function (action) {
if (action == null) action = "initialize";
return this.each(function ($this) {
$this = $(this);
if (action == "initialize") {
$this.html('<div></div>');
var div = $("div", $this);
div.append('<a>A</a>').append('<a>B</a>').append('<a>C</a>');
div.children("a").each(function (i) {
$(this).click(function (event) {
// Here I store the index.
$this.data($(this).index());
event.preventDefault();
return false;
});
});
return $this;
} else if (action == "getSelection") {
// With this action, I tried to get the stored value.
return $this.data("selectedValue");
}
});
};
})(jQuery);
创建元素的简单调用:
$("#someElement").myPlugin();
在这里,我试图获取索引,但没有成功:
alert($("#someElement").myPlugin("getSelection"));
那么,有可能做我正在尝试的事情吗?