我有很多關於編寫面向對象的javascript代碼和開發jQuery插件的文章,迄今爲止都很好,我理解它們是如何工作的,並且我可以創建自己的插件。使用「活」的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」實例。
如何更改它(如果它是可能的),以便它可以處理將來添加的元素?
感謝
如何這些元素的加入? – yoda 2010-12-23 14:07:50
他們可能會使用ajax添加,我知道它可以使用回調重新應用插件,但這似乎是一個浪費,因爲新對象將被創建。 – andrew 2010-12-23 14:19:05