选择框在 IE 中显示时会隐藏冗长的文本作为其选项,而在 Firefox 中则显示完美
选择框在 IE 中显示时隐藏了冗长的文本作为其选项,而在 Firefox 中显示完美,我该如何纠正这个问题...
<select name="product" id="product" style="width:135px;" onChange="javascript:refill();bannersize();">
<option value="">Select Product</option>
<?php while($result=mysql_fetch_object($sql_query))
{
?>
<option value="<?php echo $result->categories_id;?>"><?php echo $result->categories_name;?></option>
<?php
}
?>
</select>
Select box hides the lengthy text as its option when displayed in IE whereas it is displayed perfect with Firefox, How can I rectify this issue...
<select name="product" id="product" style="width:135px;" onChange="javascript:refill();bannersize();">
<option value="">Select Product</option>
<?php while($result=mysql_fetch_object($sql_query))
{
?>
<option value="<?php echo $result->categories_id;?>"><?php echo $result->categories_name;?></option>
<?php
}
?>
</select>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看到这个问题,答案使用了YUI库: Dropdownlist width in IE
这个页面还有一个很好的解决方案: http://www.dougboude.com/blog/1/2008/05/Viewing-Option-Text-in-IE7-thats-Wider-than-the-Select-List.cfm
See this question, the answer uses the YUI library: Dropdownlist width in IE
This page also has a nice solution: http://www.dougboude.com/blog/1/2008/05/Viewing-Option-Text-in-IE7-thats-Wider-than-the-Select-List.cfm