下拉列表错误显示在ie中

时间:2013-03-06 04:06:07

标签: asp.net vb.net internet-explorer

我在IE6,7和8中使用DropDownList控件(ASP.NET,VB)。

我的DropDownList控件设置为200px宽度,但项目列表更长,并显示裁剪。

我尝试使用带有属性(“标题”)的工具提示,但它不起作用。

我该怎么办?

(我绑定了数据表中的项目,所以我在html中没有<select> <options>

1 个答案:

答案 0 :(得分:0)

一旦页面呈现,您可以通过JQUERY覆盖下拉宽度。

$(document).ready(function(){

$("#dropdownID").addClass("ddlwidth")
});

在CSS中创建一个类

.ddlwidth{width:500px !important;}

!important将使用当前值覆盖宽度