增加IE中DropDownList的大小?

时间:2014-03-06 09:41:47

标签: javascript jquery asp.net css

我的asp.net webform上的数据库正在填充DropDownListDropDownList的项目会根据Chrome和Mozilla中项目的长度进行扩展。但是在IE中,DropDownList的项目被截断了。

我试过......

var el;

$("select")
  .each(function() {
    el = $(this);
    el.data("origWidth", el.outerWidth()) // IE 8 can haz padding
  })
  .mouseenter(function(){
    $(this).css("width", "auto");
  })
  .bind("blur change", function(){
    el = $(this);
    el.css("width", el.data("origWidth"));
  });

我找到了http://css-tricks.com/select-cuts-off-options-in-ie-fix/

但它似乎没有起作用。救命啊!

0 个答案:

没有答案