$.post(
$("#formReg").attr("action"), $("#formReg").serialize(),
function(data, textStatus, jqXHR) {
$("#info").html(data);
alert (data); // to check - ok - `folder` is displaying
if ($("#info").html() == "folder"){
$("#imgOk").fadeIn(); //doesn't work
}
});
似乎#info
有另一个内容,而不是folder
,虽然由警报检查,并且folder
作为内容在屏幕上可见。