工具提示 - 标题在 IE 6 中不起作用

发布于 2024-07-22 14:30:48 字数 436 浏览 9 评论 0原文

我使用的是宽度为 100px 的下拉菜单。 但该下拉列表中的内容不止于此 - 用户看不到它,所以我选择标题(html 中的工具提示)。 它在 IE 6 中不起作用。

这个的替代方法是什么。鼠标悬停事件在 IE 中也不起作用。 请帮助并澄清错误

<select>
    <option>-</option>
    <option  title="Alpha">a</option>
    <option  title="Beta">b</option>
    <option  title="Complex">c</option>
    <option  title="Durpal">d</option>
</select>

I am using a dropdown, which having the width of 100px. But the content with in that dropdown is more than that - its not visible to the user, so i go for title (ToolTip in html). Its not working in IE 6..

What is the alternative method for this.. mouseover event is also not working in . Please help and clarify the bug

<select>
    <option>-</option>
    <option  title="Alpha">a</option>
    <option  title="Beta">b</option>
    <option  title="Complex">c</option>
    <option  title="Durpal">d</option>
</select>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

篱下浅笙歌 2024-07-29 14:30:48

我认为 IE 为此目的使用的属性是“alt”而不是“title”。

I think the attribute that IE used for that purpouse was "alt" instead of "title".

苍风燃霜 2024-07-29 14:30:48

听起来您的意思是您的选择中有些选项的文本溢出到选择的边缘。 如果是这种情况,实际上没有一种简单的方法可以解决它(除了增加下拉列表的大小之外)。 您可能需要研究将模拟下拉列表的第三方组件。 使用其中之一,下拉区域不会与选择元素绑定,因此该区域可以更大。

请参阅此示例

http://jquery.sanchezsalvador.com/samples/example.htm

It sounds like what you are saying is there are options within your select which have a text that overflow past the edge of the select. If this is the case there isn't really an easy way to fix it (other than increasing the size of the drop down list). You may want to look into a third party component which will emulate a drop down list. Using one of these, the area which drops down isn't tied to the select element, so that area can be larger.

See this for an example

http://jquery.sanchezsalvador.com/samples/example.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文