我在IE6,7和8中使用DropDownList控件(ASP.NET,VB)。
我的DropDownList控件设置为200px宽度,但项目列表更长,并显示裁剪。
我尝试使用带有属性(“标题”)的工具提示,但它不起作用。
我该怎么办?
(我绑定了数据表中的项目,所以我在html中没有<select>
<options>
答案 0 :(得分:0)
一旦页面呈现,您可以通过JQUERY覆盖下拉宽度。
$(document).ready(function(){
$("#dropdownID").addClass("ddlwidth")
});
在CSS中创建一个类
.ddlwidth{width:500px !important;}
!important将使用当前值覆盖宽度