下拉表单的change事件
各位大神们,以下代码中为毛我将$(function () 去掉,这段代码一样能执行?这里$(function () 有什么用? $(function () {
$("select").bind("change", function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
})
});