Tôi có Tác vụ để thay đổi màu của thanh cuộn.Đối với tôi đã sử dụng jscrollpane.Bằng cách làm này chỉ cuộn trình duyệt được thay đổi. Tôi muốn thay đổi màu của danh sách thả xuống Tôi có thể làm điều này như thế nào? html làLàm thế nào tôi có thể thay đổi màu sắc của thanh cuộn
<div class='columnLeft'>
<div class="labels w110">
<label>Country</label>
</div>
<div class="controls hello" id="hello">
@Html.DropDownList("ddlReCountry", null, new { @onchange = "onReBindCountry()", @class = "dropdown w325" })
</div>
</div>
javascript là
$(function() {
$('.hello ').jScrollPane();
$('#hello').bind(
'jsp-scroll-y',
function (event, scrollPositionY, isAtTop, isAtBottom) {
console.log('#pane1 Handle jsp-scroll-y', this,
'scrollPositionY=', scrollPositionY,
'isAtTop=', isAtTop,
'isAtBottom=', isAtBottom);
});
});
css là
.jspTrack {
background: lightgray !important;
}
.jspDrag {
background: gray !important;
}