0

我想扩展bootstrap-collapse.js 插件并在其中添加我自己的显示和隐藏方法。

我想覆盖现在有的东西。

你能帮我做吗?

4

1 回答 1

0

您需要在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);
   ...
}
于 2013-03-18T20:21:14.493 回答