工具提示 - 标题在 IE 6 中不起作用
我使用的是宽度为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为 IE 为此目的使用的属性是“alt”而不是“title”。
I think the attribute that IE used for that purpouse was "alt" instead of "title".
听起来您的意思是您的选择中有些选项的文本溢出到选择的边缘。 如果是这种情况,实际上没有一种简单的方法可以解决它(除了增加下拉列表的大小之外)。 您可能需要研究将模拟下拉列表的第三方组件。 使用其中之一,下拉区域不会与选择元素绑定,因此该区域可以更大。
请参阅此示例
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