2012-12-24 47 views
0
<script type="text/javascript"> 
function getFile() 
    { 
    document.getElementById("image").click(); 
    } 
function sub() 
    { 
    document.getElementById("button").click(); 
    } 

</script> 

<form action="addexec.php" method="post" enctype="multipart/form-data" name="addroom"> 
<div id="yourBtn" onclick="getFile()">click to upload a file</div> 
<div style='height: 0px; width: 0px;overflow:hidden;'> 
<input id="image" type="file" value="image" name='image' onchange="sub()"/></div> 
<input id='button' type='submit' /> 
</form> 

,而不是調用函數子(提交按鈕),我怎麼能driect提交有關影像提交使用數據的JavaScript而不是調用提交按鈕

+0

你用ajax提交文件還是像ajax請求? –

回答

1

直接與在線提交形式:

document.addroom.submit(); 
+0

謝謝@GarethCornish – user1935863

相關問題