這例子我使用了保持開放的工具提示沒有懸停或點擊 但它不工作的任何其他建議如何保持積極的引導提示,而不懸停或點擊
<a href="#" title="Download Excel" class="tool_tip">Download Excel</a>
我的工具提示的jQuery保持積極
<script>
$('.tool_tip').tooltip({trigger: 'manual'}).tooltip('show');
</script>
這例子我使用了保持開放的工具提示沒有懸停或點擊 但它不工作的任何其他建議如何保持積極的引導提示,而不懸停或點擊
<a href="#" title="Download Excel" class="tool_tip">Download Excel</a>
我的工具提示的jQuery保持積極
<script>
$('.tool_tip').tooltip({trigger: 'manual'}).tooltip('show');
</script>
嘗試增加
data-toggle="tooltip" data-placement="right"
到您的HTML:
<a href="#" data-toggle="tooltip" data-placement="right" title="Download Excel" class="tool_tip">Download Excel</a>
https://jsfiddle.net/404c3fxb/
或者,你可以用jQuery做到這一點,所有的元素,你想,有一類選擇:
$('.tool_tip')
.attr('data-toggle', 'tooltip')
.attr('data-placement', 'right')
.tooltip({
trigger: 'manual'
})
.tooltip('show');
https://jsfiddle.net/404c3fxb/1/
其中數據放置是工具提示loc (左,上,下或右)。
我用jquery的那 –
那麼,它適合你嗎? –
nope alnfabeta它不工作 –
你可以給完整的HTML和jQuery代碼,包括其中引用您使用 –
它爲我的文件。 – makshh
你能詳細說明你的代碼「不起作用」嗎?你在期待什麼,究竟發生了什麼?如果您遇到異常/錯誤,請發佈其發生的行和異常/錯誤的詳細信息。請[編輯]這些細節或我們可能無法提供幫助。 – FrankerZ