我在我的WebAplication中使用Twitter Bootstraper,在我的materpage中我做了以下
<%--Referencing jQuery--%>
<script type="text/javascript" src="Scripts/jquery-1.4.1.js"></script>
<%--Referencing the bootstraper script--%>
<script src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-twipsy.js" type="text/javascript"></script>
<%--My Script--%>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$("a").twipsy();
});
</script>
然后在页面(Default.aspx)代码ia有一个这样的链接:
<a href="#" id="example" class="classeTeste" title="Some title text">text</a>
当运行页面时,twipsy(程式化的工具提示)不起作用。 看这里看twipsy在行动(http://twitter.github.com/bootstrap/javascript.html#twipsy)
我看到“正常的工具提示”
检查chrome的控制台我看到了follong脚本错误 未捕获的TypeError:无法将null转换为对象(bootstrap-twipsy.js:315)
怎么了?
答案 0 :(得分:1)
你的JQuery版本太旧了,这可能就是原因。
另一种可能性是你的选择器是$(“a”)而不是id,$(“#mylink”)。但是文档建议它应该与集合一起使用。