我正在学习如何编写jQuery插件。那么为什么我正在做我正在做的事并不重要。
我编写了一个名为live2的插件,除了内部调用live方法之外别无其他功能。
(function($) {
$.fn.live2 = function() {
/* if there are no elements then just return */
if (!this.length) return this;
return this.each(function() {
var $this = $(this);
jQuery.fn.live.apply(this, arguments);
}); // end of return this.each(function())
}; // end of plugin
})(jQuery);
上面的代码应该直接调用任何实时方法。而不是现场使用live2。
$('#container').live2('click',function(){
return false;
})
但该插件不起作用。知道修复应该是什么。
答案 0 :(得分:1)
live只适用于选择器,所以
$('#something.something').live(...)
将有效
$(this).live(...
)不应该起作用(根据文件)
你的插件示例看起来很不错。我改变了这两件事: 1.这是$ this 2.在致电每个
后返回生活并不是一个很好的功能来进行实验。尝试切换
像这样:(function($) {
$.fn.toggle2 = function() {
/* if there are no elements then just return */
if (!this.length) return this;
this.each(function() {
var $this = $(this);
$this.toggle(arguments);
});
return this;
}; // end of plugin
})(jQuery);
答案 1 :(得分:0)
编辑:我认为你只需要这样做:
$.fn.live2 = function() {
this.live.apply(this, arguments);
};
答案 2 :(得分:0)
你错过了这行中的$:
jQuery.fn.live.apply(this, arguments);
因此,
jQuery.fn.live.apply($this, arguments);