jQuery.fn.MyFunction = function(){ return this.each(function() { attributes = "test"; return attributes; });}
但是当我打电话
var1 = $(this).MyFunction();alert(var1);
我有一个[对象],但不是“测试”.
如何让jquery插件返回一些值?
jQuery("test").method1().method2() ...
如果要返回其他内容,请使用以下语法:
jQuery.fn.extend({ myFunction: function( args ) { attributes = "test"; return attributes; } });
,或通过其索引使用[]访问它.