在我的应用程序中,我想在工具提示上显示图像。
我该怎么做?你能帮助我,还是给我提供任何参考资料?
答案 0 :(得分:2)
请参阅以下链接,以便在工具提示中显示图像。
答案 1 :(得分:1)
您可以使用jQuery完成此操作:
$("#img_id_here").hover(function()
{
$(this).css('width', '400px');
});
<img src="whatever" onMouseOver="this.style.width='200px'" />
并在你的CSS中:
<style type="text/css">
.img:hover /* you should apply img class to your image. */
{
width:400px;
}
</style>
答案 2 :(得分:0)
AFAIK,使用简单的title
属性是不可能的。你必须使用像this这样的东西。
答案 3 :(得分:0)
你看过jQuery Tooltip plugin了吗?那是我开始的地方...... :)。
答案 4 :(得分:0)
请通过以下链接在工具提示中显示图像。
http://www.codeproject.com/KB/scripting/A_Simple_Tooltip.aspx