$("span").each(function (index,item) {
if (index == 1) {
$(item).attr("class", "red");
}
});
if (index == 1) {
$(item).attr("class", "red");
}
});
2015-01-07
@半似月
有谁这样试过:$(".green").appendTo($html); 结果让人意想不到,我整半天没想明白为何会这样。
你这个$html压根不是一个dom元素,会报错
有谁这样试过:$(".green").appendTo($html); 结果让人意想不到,我整半天没想明白为何会这样。
你这个$html压根不是一个dom元素,会报错
2015-01-07
实际上$("#content").css("background-color","red")返回的还是$("#content")
2015-01-07
$("#content").css("background-color","red").css("color","white");是可以的但是提交不通过 望改进
2015-01-07