<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
select::-ms-expand { display: none; }
.info-select{
width: 88px;
height: 25px;
border: none;
outline: none;
/*將默認的select選擇框樣式清除*/
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
/*在選擇框的最右側中間顯示小箭頭圖片*/
background: url(img/sele.png) no-repeat scroll right center transparent; /***將sele.png替換為你的下拉箭頭**/
}
</style>
</head>
<body>
<select class="info-select">
<option selected="selected">1</option>
<option>2</option>
</select>
</body>
</html>
本例可以更換selet下拉箭頭,只適用於非ie瀏覽器,ie樣式為默認樣式