在jquery插件中调用并使用jquery插件

时间:2017-06-09 20:00:32

标签: javascript jquery

嗨我试着在我的插件中调用另一个jquery插件但不起作用,如果我在外面写它就可以正常工作;

在这种情况下,这个插件有“onInit”功能,但它在我的插件中什么都不做,我无法在调试时记录任何内容。

有人可以帮助我理解它。

 $.fn.mytest= function( options ) {
    var PP = $.fn.issamtest;
    var container = $(this);
    var e = this;
    var inputs = [];


    var defaults = {
        textColor: "#000",
        backgroundColor: "#fff",
        works: [],
        service:null

    };

    var settings = $.extend( {}, defaults, options );

    //i want call another plugin like "bootstrap switch" in this code
    $('#xdjaja').bootstrapSwitch({
        onInit:function(){
            $('body').html('asd');
        }
    });  

       PP.start();

};

0 个答案:

没有答案