我试图在使用 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
?
谢谢