0
我試圖在文件上傳到服務器時顯示加載gif。使用webpy後端,我能夠成功上傳文件等,但遇到問題讓我的jQuery認識到按鈕被點擊。HTML提交後jQuery表單觸發器動作
<html>
<head>
<script type="text/javascript" src="/static/jquery.js"></script>
</head>
<div id="form_wrapper">
<script type="text/javascript">
jQuery(document).ready(function)(){
jQuery('#sub').click(function(){
jQuery('#gifdiv').show();
jQuery('#form').hide();
});
});
</script>
<div id="gifdiv" style="display: none">
<img src="/static/some.gif" style="display: auto;" id="loading">
</div>
<div id="form" style:"display: auto">
<form action="/" method="POST" enctype="multipart/form-data" id="myform">
<input type="file" name="file">
<br>
<input class="button" type="submit" id="sub">
</form>
</div>
</div>
</html>
上傳是使用Ajax還是經典的提交表單? – GeekRiky 2015-02-09 18:03:12
很明顯是經典的提交 – 2015-02-09 18:03:32
其使用經典的html提交 – 1ifbyLAN2ifbyC 2015-02-09 18:09:35