bootstrap 工具提示问题请教
<div class="well"> <p class="muted" style="margin-bottom: 0;"> Alibaba Group makes it easy for anyone to buy or sell online anywhere in the world. It is a family of Internet-based businesses that includes online marketplaces that facilitate business-to-business international and domestic China trade, retail and payment platforms, shopping search engine and distributed cloud computing services. In July 2012, Alibaba Group adjusted its core business into seven business groups, namely Alibaba International Business Operations, Alibaba Small Business Operations, <a href="#" rel="tooltip" title="Taobao Marketplace - China's popular C2C online shopping destination">Taobao</a> Marketplace, <a href="#" rel="tooltip" title="Tmall.com - China's B2C shopping destination with an extensive selection of quality brands and authentic products">Tmall.com</a>, Juhuasuan, eTao and Alibaba Cloud Computing, to foster the development of an open, collaborative and prosperous e-commerce ecosystem. </div>
看demo应该可以得到黑色的工具提示。不过效果出不来,成下面效果:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
能改变他弹出的颜色不
自己解决了。。
<script type="text/javascript">
$(document).ready(function(){
$('.tooltip-demo.well').tooltip(
{
selector: "a[rel=tooltip]"
});
});
function showtest01()
{
$('#tooltip_test01').tooltip('toggle');
$('#tooltip_test02').tooltip('toggle');
}
</script>