我有一个 div 元素,当我在 IE 上单击它时,它会显示一个线索提示。但是,当我在 Firefox(或 Chrome)中单击时,这个提示根本不显示。
我安装了萤火虫,但我没有很好的使用经验。
有了萤火虫,我能知道为什么这个提示没有显示吗?我怎样才能做到这一点?
谢谢!!
单击浏览器窗口右下角的 Firebug 图标。一个窗口窗格应该出现在屏幕底部,如下所示:
Console panel is disabled
Use this page to enable or disable following panels. Enabling these panels will reduce performance and will cause a page reload.
Console Support for Console logging. Disabled Always
Script Support for JavaScript debugging. Disabled Always
Net Support for Network monitoring. Disabled Always
选中所有 3 个框,然后单击“申请http://www.example.org ”
检查单击 DIV 时出现的任何错误。
假设您的代码看起来像<div alt="text">
. 当无法显示某些内容时,将使用 alt 属性。“对于无法显示图像、表单或小程序的用户代理,此属性指定替代文本。” W3C HTML 4.01
使用 title 属性在 IE/Firefox/Chrome 上获得您想要的结果<div title="text">
。“标题属性的值可以由用户代理以多种方式呈现。例如,可视浏览器经常将标题显示为“工具提示”......” WC3 HTML 4.01
有关更多信息,请阅读http://www.456bereastreet.com/archive/200412/the_alt_and_title_attributes/
单击Firefox中的div后检查javascript错误控制台。
工具 > 错误控制台
这应该为您提供导致错误的代码行和错误描述。