IE 8におけるselectコントロールにおけるoption表示不全ソリューション

867 ワード

selectコントロールは、optionの内容が長すぎると、IE 8に表示が不完全になり、その内容が表示されなくなる.
現在、IE 9、IE 11 selectコントロールのテストに問題はありません.
ここでselectは、対応するclassを置き換えるだけで、個別のselectに対してのみ使用できます.
ソリューション:
<!--[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]-->