//以下是隐藏所有的select
//hide the select tag of IE6
unction hideselectIE6(){
if ($.browser.msie && $.browser.version < 7) {
$("select").each(function(i){
this.style.visibility= 'hidden';
});
}
以下是显示所有的select.
//show the select tag of IE6
function showselectIE6(){
if ($.browser.msie && $.browser.version < 7) {
$("select").each(function(i){
this.style.visibility = 'visible';
});
}
}
[摘自]http://alvenxuan.iteye.com/blog/710589
解决IE6下Select不能隐藏的问题
最新推荐文章于 2022-06-01 15:08:52 发布