考虑我有 2 个插件。即工具提示,弹出框。
现在我调用这些函数,像这样
$('#target').tooltip('create');
$('#target').popover('hide');
但我想为这些函数创建一个公共命名空间,这样我就可以这样调用它们
$('#target').mynamespace.tooltip('create');
$('#target').mynamespace.popover('hide');
我只是想不出办法做到这一点
考虑我有 2 个插件。即工具提示,弹出框。
现在我调用这些函数,像这样
$('#target').tooltip('create');
$('#target').popover('hide');
但我想为这些函数创建一个公共命名空间,这样我就可以这样调用它们
$('#target').mynamespace.tooltip('create');
$('#target').mynamespace.popover('hide');
我只是想不出办法做到这一点