1

我试图在使用 jQuery 加载页面时自动单击链接。我在过去的项目中成功地完成了它,但我现在无法让它工作。这是我的代码:

<script type="text/javascript">
    $(document).ready(function(){
      $(".btn-warning").trigger("click");
    });
</script>

<!-- Modal -->
<a href="#myModal2" role="button" class="btn btn-warning" data-toggle="modal">Confirm</a>
<div id="myModal2" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel2" aria-hidden="true">
    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
        <h3 id="myModalLabel2">Alert Header</h3>
    </div>
    <div class="modal-body">
        <p>Body goes here...</p>
    </div>
    <div class="modal-footer">
        <button data-dismiss="modal" class="btn green">OK</button>
    </div>
</div>

我相信data-toggle="modal"代码的一部分把事情搞砸了。但是,如果我删除它,则模式根本不起作用。也许我需要使用价值以外的东西click

谢谢

4

4 回答 4

2

既然你说你正在使用 Bootsrap。我会建议以下(下)而不是使用点击事件。

<script type="text/javascript">
    jQuery(window).load(function($){
        $('#myModal2').modal('show');
    });
</script>

小提琴:http: //jsfiddle.net/RsdpT/1/

另一个小提琴(感谢@FakeRainBrigand):http: //jsfiddle.net/nHD9U/2/

于 2013-07-31T20:00:26.497 回答
0

你可以试试:

$(".btn-warning").click();
于 2013-07-31T19:58:36.830 回答
0

怎么样

$(".btn-warning")[0].click();
于 2013-07-31T20:01:08.527 回答
0

为什么不直接做你想做的事:

$(document).ready(function(){
    location.hash = "myModal2";
});
于 2013-07-31T20:03:19.137 回答