javascript – Jquery返回值

前端之家收集整理的这篇文章主要介绍了javascript – Jquery返回值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我用了一个代码
jQuery.fn.MyFunction = function(){
return this.each(function() {
    attributes = "test";

    return attributes;
});}

但是当我打电话

var1 = $(this).MyFunction();alert(var1);

我有一个[对象],但不是“测试”.

如何让jquery插件返回一些值?

解决方法

jQuery插件通常设计为返回一个jQuery对象,以便可以链接方法调用
jQuery("test").method1().method2() ...

如果要返回其他内容,请使用以下语法:

jQuery.fn.extend({
    myFunction: function( args ) {
            attributes = "test";

            return attributes;
    }
});

,或通过其索引使用[]访问它.

猜你在找的jQuery相关文章