选择框在 IE 中显示时会隐藏冗长的文本作为其选项,而在 Firefox 中则显示完美

发布于 2024-09-04 05:34:13 字数 511 浏览 3 评论 0原文

选择框在 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 技术交流群。

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

发布评论

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

评论(1

雨后彩虹 2024-09-11 05:34:13

看到这个问题,答案使用了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

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