访问另一个插件jquery的param配置

时间:2015-06-18 13:02:22

标签: jquery plugins

Hy大家, 我从头开始在jquery中创建一个插件。 所以我可以做到这一点,没有任何困惑:

$('#some_id').myplugin({
    param1:'hello',
    param2:'world',
    idassociated:'other_id'
});

$('#other_id').myplugin({
    param1:'hello',
    param2:'world',
    idassociated:'some_id'
});

在myplugin()的实现代码中,我需要:

  1. 保存associatedID
  2. 的参数
  3. 重置插件;
  4. 修改一个参数;
  5. 使用新参数重新初始化myplugin;
  6. 在代码中:

        // 1 I have no idea
        $('#'+option.idassociated).myplugin('destroy'); // 2
        // 3 i have no idea and it depends from the point 1
        $('#other_id').myplugin({
            // 4 newparam
        });
    

    我想知道如何在另一个插件中访问插件的param实例。

0 个答案:

没有答案