0

私はこのスクリプトを持っています:

  $('#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…&lt;/p>
</div>
<div class="modal-footer">
    <button class="btn" data-dismiss="modal">Close</button>
</div>

POST 変数を送信し、クリックするたびにリモート ページを取得したいのですが、最初のクリックでのみ POST 変数を送信するようになりました。その後、ページを更新する必要があります。

4

1 に答える 1

0

javascriptのhashchangeのことですか?ちょうどこのような

site.com/blah#content=1

function hash()
{
var hash = window.location.href;
hash = split("#", hash);
hash = hash[1]; // this is hash param
return hash;
}

$(window).on('hashchange', function() {
$("#page").load("index.php?"+hash());
});

$(window).ready(function() {
$("#page").load("index.php?"+hash());
});
于 2013-09-28T11:22:47.293 に答える