get DOM,Function,JsVar of ifram

 
  ie&firefox 
      document.getElementById("frameId").contentWindow.varName;
      document.getElementById(" frameId ").contentWindow.functionName();
      document.getElementById(" frameId ").contentWindow.document.getElementById("someId");
      $("# frameId ").contents().find("# someId ");

  ie 
      document.frames(" frameId ").window.document.getElementById(" someId ");

  firefox 
      document.getElementById(" frameId ").contentDocument.getElementById(" someId ");

你可能感兴趣的:(js,jquery,iframe)