Hy大家, 我从头开始在jquery中创建一个插件。 所以我可以做到这一点,没有任何困惑:
$('#some_id').myplugin({
param1:'hello',
param2:'world',
idassociated:'other_id'
});
$('#other_id').myplugin({
param1:'hello',
param2:'world',
idassociated:'some_id'
});
在myplugin()的实现代码中,我需要:
associatedID
myplugin
; 在代码中:
// 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实例。