为啥没反应?
$(function () {
$("#seltest").bind("change",function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
});
});
$(function () {
$("#seltest").bind("change",function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
});
});
2016-02-20
举报