div
<div class="modal fade" id="loading" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" data-backdrop='static'> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-body"> 请稍候。。。<span id="result"></span> </div> </div> </div> </div>
js
function jiesuan(){ $('#loading').modal('show'); $.ajax({ type: "POST", //提交的方法 url:"${base}/order/create", //提交的地址 data:$('#orderForm').serialize(),// 序列化表单值 error: function(request) { //失败的话 alert("Connection error"); }, success: function(data) { //成功 $('#loading').modal('hide'); window.location.href="${base}/order/payment?orderSns="+data.orderSns; } }); }