作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
构建一个包含文件上传页面的 jquery mobile。它是一个多模板应用程序。当用户上传文件时,我希望用户重定向到新页面而不刷新 div。使用我当前的脚本,上传完成后地址栏会刷新。我使用了 event.preventDefault();
我教过的可以在发送数据后阻止页面刷新,但仍然会刷新
<script language="javascript">
$(document).ready(function(){
$("#form1").on('submit',function(event){
event.preventDefault();
$.ajax({
url: "upload.php", // Url to which the request is send
type: "POST", // Type of request to be send, called as method
data: new FormData(this), // Data sent to server, a set of key/value pairs (i.e. form fields and values)
contentType: false, // The content type used when sending data to the server.
cache: false, // To unable request pages to be cached
processData:false, // To send DOMDocument or non processed data file it is set to false
success: function(data) {
$('#msg').html(data);
var result = $.trim(data);
if(result==="OK"){
$.mobile.changePage("#page2");
}
}
});
});
});
</script>
最佳答案
试试这个
$('#form1').live('submit' ,function(event){
event.preventDefault();
// the rest
});
或
$("#form1").submit(function(e){
//the rest
return false;
});
关于javascript - 上传图片并重定向到新页面,无需刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28569117/
我是一名优秀的程序员,十分优秀!