日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

jQuery解決下拉框select設(shè)寬度時(shí)IE 6/7/8下option超出顯示不全

個(gè)人做了一些自定義的修改
復(fù)制代碼 代碼如下:
!--[if lt IE 9]
script type="text/javascript"
jQuery(function($){
var el;

$("select").each(function() {
el = $(this);
el.data("origWidth", el.css("width"));
// el.data("oriWidth",85);
})
.focusin(function(){
el=$(this);
el.css("width", "auto");

//if(el.width()el.data("oriWidth")){
// el.css("width", el.data("origWidth"));
//}

})
.bind("blur change ", function(){
el = $(this);
el.css("width", el.data("origWidth"));
});
});
/script
![endif]--
您可能感興趣的文章:jQuery獲取select選中的option的value值實(shí)現(xiàn)方法JQuery動(dòng)態(tài)添加Select的Option元素實(shí)現(xiàn)方法JS & JQuery 動(dòng)態(tài)添加 select optionjQuery操作Select的Option上下移動(dòng)及移除添加等等JQuery中對(duì)Select的option項(xiàng)的添加、刪除、取值刪除select中所有option選項(xiàng)jquery代碼淺析jQuery對(duì)select操作小結(jié)(遍歷option,操作option)JQuery操作Select的Options的Bug(IE8兼容性視圖模式)jquery操作select option 的代碼小結(jié)jQuery動(dòng)態(tài)產(chǎn)生select option下拉列表

    推薦閱讀