我有很多关于编写面向对象的 javascript 代码和开发 jQuery 插件的文章,到目前为止一切都很好,我了解它们是如何工作的,我可以创建自己的插件。
但是,所有文章都存在一个问题(即使有官方插件创作指南 - http://docs.jquery.com/Plugins/Authoring) - 这些所有模式都不支持“实时”。
让我们以这种模式为例 - http://www.virgentech.com/blog/2009/10/building-object-oriented-jquery-plugin.html
$.fn.myplugin = function(options)
{
return this.each(function()
{
var element = $(this);
// Return early if this element already has a plugin instance
if (element.data('myplugin')) return;
// pass options to plugin constructor
var myplugin = new MyPlugin(this, options);
// Store plugin object in this element's data
element.data('myplugin', myplugin);
});
};
将在每个 jQuery 匹配对象上创建新的“MyPlugin”实例。
如何更改它(如果可能的话)以使其适用于将来添加的元素?
谢谢