drop down 我正在使用jquery-ui datepicker。我需要在悬停时将下拉项目的背景颜色从蓝色更改为灰色。 my code以下是我的代码
<head><meta charset="utf-8"> <title>jQuery UI Datepicker - Display month & year menus</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
答案 0 :(得分:0)
$("option").on({
mouseenter: function() {
$(this).css("background-color", "grey");
},
mouseleave: function() {
$(this).css("background-color", "blue");
}
});
但是,这也适用于您在页面上的任何其他option