我有一个 jQuery animate 函数,如果我的下拉列表的 selectedvalue 是 X,我想调用它
<script>
$(function () {
var state = true;
($("#button").click)(function () {
if (state) {
$("#effect").animate({
backgroundColor: "#aa0000",
color: "#fff",
width: 500
}, 1000);
} else {
$("#effect").animate({
backgroundColor: "#fff",
color: "#000",
width:500
}, 1000);
}
state = !state;
});
});