要在現成已有的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 ?