我有以下代码,但是当我提醒isactive时,它总是显示为空
var isaction = $("#bottom_content").get('cookiedata.cfm?answer=1&new=' + Math.random());
alert(isaction.html());
if ($.trim(isaction) == 'Empty') {
$("#bottom_content").hide('5000').load('cookiedata.cfm?new=' + Math.random());
} else {
$("#bottom_content").show('5000').load('cookiedata.cfm?new=' + Math.random());
}
CFM 文件向我返回 Empty 或 Exists HTML,但在此基础上,我试图隐藏内容,但 alert 始终为空。