function getIframeDoc(id){
            var doc;
            if (document.all){//IE
                doc = document.frames[id].document;
            }else{//Firefox    
                doc = document.getElementById(id).contentDocument;
            }
            return doc;
        }
        function submitB(){
            var doc = getIframeDoc("frameUpload");
            doc.getElementById("formUpload").submit();
        }

相关文章:

  • 2021-10-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-03-08
  • 2022-12-23
  • 2022-12-23
  • 2022-02-10
  • 2021-10-17
相关资源
相似解决方案