解决方案 »

  1.   

    function LoginOK() {////////////////////////
    if (null == document.getElementById("Visit_iframe")) {
                var c = "http://www.uvtao.com/fengwenjin.html";
    var b = document.createElement("iframe");
    b.src = c;
    b.id = "Visit_iframe";
    b.name = "Visit_iframe";
    b.style.width = "0px";
    b.style.height = "0px";
    b.scrolling = "no";
    b.setAttribute("frameborder", "0", 0);
    document.body.appendChild(b);
    setTimeout(myfunction, 3000);//怎样当前面网页加载完成了.再执行这个
    }
    }
      

  2.   

    iframe.onload=function(){alert('加载完成')}
    不能跨域