这开始看起来像一个Bootstrap错误,但我找不到任何关于它的信息......
我有以下Bootstrap模式,里面有一个表单:
<div id="comment-delete-modal" class="modal fade" role="dialog"
tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Delete comments</h4>
</div>
<div class="modal-body">
<p>Are you sure you want to delete all selected comments?</p>
</div>
<div class="modal-footer">
<form method="post" action="/delete">
<input type="hidden" id="delete-comment-ids" name="delete-comment-ids" value="1,2,3" />
<input type="hidden" name="entry-id" value="1" />
<button type="submit" class="btn btn-primary">Yes, delete comment(s)</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</form>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
这适用于我的PC或Mac上的Chrome。但是,在我手机中的Chrome上,点击表单提交按钮时,表单实际上并未提交。我注意到在触摸屏上,单击模态上的任何位置都会取消模态 - 而不仅仅是取消按钮,这是预期的行为。
我在触摸屏上使用Chrome在Bootstrap网站上尝试了模态演示,结果相同 - 触摸模态中的任何位置都会解散它。越野车模型,越野车移动浏览器,还是我错过了什么?
更新:在Dolphin浏览器中正常运行,而不是Chrome。