document没有MM_maxZ属性
如果你使用document.MM_maxZ必须提前为document添加这个属性
例如document.MM_maxZ=123
估计你当前document.MM_maxZ的值为undefined,所以参数无效
documen.domain只能嵌套iframe才能跨域。建议用jsonp方法;
varajaxLogoutScript=document.createElement("script")
ajaxLogoutScript.src=xxxx.url+"?time="+newDate().getTime()+"&jsonCallback=myLogoutcallback"
document.body.appendChild(ajaxLogoutScript)
function myLogoutcallback(data){
if(data){
//dosomething
}
}