我目前正在使用 twitter bootstrap 添加工具提示。
这是我的JS:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css"/>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("a img").tooltip({'placement': 'right'});
});
</script>
我正在尝试使用带有 rel attr 的 jquery 附加图像,以获取如下工具提示:
$(".info").append('<a href="#" rel="tooltip" title="first tooltip"><img src="http://extrarewards.nationalexpress.com/images/assets/info_icon.png"/></a>');});
没有图像,这可以工作,但是一旦我在其中添加图像,它就会停止工作。
任何想法上面有什么问题?