要在现成已有的jquery plugin上增加新的function
我看jquery plugin上的教学
$.fn.hilight.format = function( txt ) {
...
};
可是我照做了之后,实际呼叫时会出现
TypeError: Object [object Object] has no method 'format'
所以目前只好写成
$.fn.format = function( txt ) {
...
};
可是这样就变成全部的jquery object都有这function
我要如何替一个jquery object来新增它专属的function ?