为什么我的没效果?求大神指教
<script type="text/javascript">
$(function () {
$("seltest").bind("change", function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
})
});
</script>
<script type="text/javascript">
$(function () {
$("seltest").bind("change", function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
})
});
</script>
2015-08-04
举报