5

我正在创建一个基于 jQuery 小部件的富文本编辑器,它可以在一个页面上有多个实例。第一个实例应该生成一个像这样的工具栏:

<input type="checkbox" id="bold-1"><label for="bold-1">..
<input type="checkbox" id="italic-1"><label for="italic-1">..
...

第二个实例应生成:

<input type="checkbox" id="bold-2"><label for ="bold-2">..
<input type="checkbox" id="italic-2"><label for ="italic-2">..

标签“for”属性需要唯一地引用其相应的输入“id”属性。因此我需要为每个实例添加一个唯一的 id。

像这样的东西可以工作,但我不喜欢在全局命名空间中存储一个计数器:

var textEditorCount;
$.widget("myEditor.textEditor", {
   _create: function () {
      textEditorCount = textEditorCount ? textEditorCount + 1 : 1;
      this.instanceID = textEditorCount;
   },
   ...
};

也许问题归结为:(如何)我可以在小部件的命名空间中存储变量吗?

4

3 回答 3

6

您可以使用闭包:

(function () {
  var textEditorCount;
  $.widget("myEditor.textEditor", {
     _create: function () {
        textEditorCount = textEditorCount ? textEditorCount + 1 : 1;
        this.instanceID = textEditorCount;
     },
     ...
  };
})();

textEditorCount将不再是全球性的。

于 2012-07-16T13:57:22.880 回答
5

从 jQuery UI 1.9 开始,每个小部件实例都有唯一的字段this.uuidthis.eventNamespace

this.uuid = uuid++;
this.eventNamespace = "." + this.widgetName + this.uuid;

https://github.com/jquery/jquery-ui/blob/1.9.0/ui/jquery.ui.widget.js#L215

字段this.eventNamespace适用于分配/清除唯一事件处理程序(http://api.jquery.com/on/ - 阅读“事件名称和命名空间”一章)。

于 2013-08-28T11:19:25.493 回答
0

全局变量(或在 NS 中)在我所做的每个实例中增加一个

于 2012-07-16T13:42:12.903 回答