我有这个脚本:
$('#openBtn').click(function(){
$(".modal-body").load("/show.php?fFuehIFj1L0vS6Hp", {oi: $("#oi").val(), txtid: $("#txtid").val()}, function(result){
$('#myModal').modal({show:true});
});
});
这个html:
<a href="#" class="btn" id="openBtn">Open modal</a>
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Modal header</h3>
</div>
<div class="modal-body">
<p>My modal content here…</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal">Close</button>
</div>
我想每次点击发送 POST 变量并检索远程页面,但现在它只在第一次点击时发送 POST 变量,之后我必须刷新我的页面。