首页 > 网站 > WEB开发 > 正文

清除 select 默认样式

2024-04-27 15:14:37
字体:
来源:转载
供稿:网友

select向下箭头隐藏方法:

CSS{

 appearance:none;     -moz-appearance:none;     -webkit-appearance:none;   -ms-appearance:none; 

}

先清除默认样式,再使用span标签去代替下拉箭头样式。

在IE下隐藏下来箭头

css{

select::-ms-expand { display: none; };

}

使用JS切换选中状态文字颜色与默认状态下文字颜色。

// select 默认颜色与选中颜色切换		$('select').css('color','#999');		$('option').css('color','#323232');		$('select').change(function(){			var $selltem = $(this).val();			if($selltem == $(this).find('option:first').val()){				$(this).css('color','#999');			}else{				$(this).css('color','#323232');			}		});


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表