$("#thinker01").click( function() {
$("#info").html("323");
if ($("#info").html == "323"){ //doesn't work - how to say this?
$("#imgOk").fadeIn();
}
});
没有if
- 第四行有效。
$("#thinker01").click( function() {
$("#info").html("323");
if ($("#info").html == "323"){ //doesn't work - how to say this?
$("#imgOk").fadeIn();
}
});
没有if
- 第四行有效。