您需要在collapse
原型中重新定义这些方法。
$.fn.collapse.Constructor.prototype.show = function () {
// your code
}
但是如果你想扩展这些方法并保持它们的默认行为,你可以这样做:
var tmp = $.fn.tooltip.Constructor.prototype.show;
$.fn.collapse.Constructor.prototype.show = function () {
...
tmp.call(this);
...
}