0

IFRAME に基づくアップローダー ファイルがあります。Firefox と Google Chrome では問題なく動作しますが、Internet Explorer 8 では、ファイルを送信するとページ全体が更新されます。私のコードに従ってください:

JS:

  function test(){
     iframe = document.createElement("IFRAME");  
     iframe.name = "iframe_upload";
     iframe.id = "iframe_upload"; //some browsers target by id not name
     document.body.appendChild(iframe);
     document.getElementById("test").target = "iframe_upload";
  }

HTML:

<form id="test" method="post" target="iframe_upload" enctype="multipart/form-data" onsubmit="javascript:test()" action="test.php">
  <input name="image" type="file" /> 
  <input type="submit" value="Submit" />
</form>
4

1 に答える 1