本文介绍了具有多个“数据切换"的引导控制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法通过数据切换"将多个事件分配给引导程序控件.例如,假设我想要一个分配了工具提示"和按钮"切换的按钮到它.
尝试了 data-toggle="tooltip button",但只有工具提示有效.
Is there a way to assign more than one event to a bootstrap control via "data-toggle".For example, lets say I want a button that has a "tooltip" and a "button" toggle assigned to it.
Tried data-toggle="tooltip button", but only the tooltip worked.
使用
$("#newbtn").toggleClass("active").toggleClass("btn-warning").toggleClass("btn-success");
推荐答案
如果你想添加一个模态和工具提示而不添加 javascript 或改变工具提示功能,你也可以简单地包装一个元素围绕它:
If you want to add a modal and a tooltip without adding javascript or altering the tooltip function, you could also simply wrap an element around it:
<span data-toggle="modal" data-target="modal">
<a data-toggle="tooltip" data-placement="top" title="Tooltip">
Hover Me
</a>
</span>
这篇关于具有多个“数据切换"的引导控制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!