作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,...目前我正在创建一个带有一些输入文本和图像上传字段的表单,我使用 ajaxForm 来处理该过程,并使用 bootstrap 3 作为模式(我将此页面称为表单页面)。在此页面中,我还将显示数据库中的所有数据列表。
场景是,当用户单击按钮时,它将触发 Bootstrap 模式打开(完美工作)其中的表单。当用户单击提交按钮时,表单会将字段的所有值发送到处理页面,该页面工作正常。
所有值都完美发送到处理页面,并在表单页面中很好地返回成功消息,但不会显示新插入的查询。我需要手动刷新页面以显示新添加的查询。我不知道我的代码或 ajax 有什么问题。
供您引用,我使用 ajaxForm 插件来处理表单 ( http://malsup.com/jquery/form/ )、Bootstrap 和 Jquery
这是我当前的代码:
<div id="add_sku" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">*Some text here*</div>
<div class="modal-body">
<form id="addProduct" class="addnew" name="addProduct" method="post" enctype="multipart/form-data" data-ajax="true" action="add_product.php">
.... *the rest of the form field which is input text and image upload*
</div>
</div>
<div class="modal-footer" id="form">
<input name="submit" type="submit" class="btn btn-success" id="addpid" value="submit" />
<input name="Reset" type="reset" class="btn btn-default" value="Cancel" data-dismiss="modal" data-target="div#add_sku" />
</div></form>
</div></div></div>
</div>
和我的js:
<script type="text/javascript">
$(document).ready(function(e) {
$('form#addProduct').submit(function(){
var options={
success:function(r){
$('div#confirm').css('display','').html(r).delay(2500).slideUp('slow');
$('div#add_sku').modal('hide');
},
clearForm:true,
resetForm:true,
type:'post',
}
$(this).ajaxSubmit(options);
return false;
});
e.preventDefault();
});
</script>
最佳答案
如果您使用 jquery 那么 this might help you.
$.ajax({
type: "POST",
url: url,
data: data,
success: success,
dataType: dataType
});
关于jquery - bootstrap的模态ajaxform提交变量和图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21521374/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!