我正在为我的新网站使用引导程序。我想使用按钮插件。不是将 jquery.trigger 代码添加到 bootstrap-button.js 中,而是当前的最佳做法是在单击按钮时显示警报?
引导按钮.js:
Button.prototype.toggle = function () {
var $parent = this.$element.parent('[data-toggle="buttons-radio"]')
$parent && $parent
.find('.active')
.removeClass('active')
this.$element.toggleClass('active')
this.$element.trigger('button-change') //added code
}