我正在使用Bootstrap 3.0,我有一个开放的模态窗口,底部有两个“按钮”,一个显示“联系我们”,另一个显示“关闭”。
当有人点击“联系我们”按钮时,我希望关闭“模态”窗口,并将用户自动转到同一页面上的特定锚点。
以下不起作用。它会将页面滚动到所需的锚点,但是用户无法看到它,因为它没有关闭模态窗口......
<a class="btn btn-info" data-dismiss="modal" href="#section-contact">Contact Us</a>
答案 0 :(得分:3)
您是否尝试或考虑过关闭按钮上的jquery onclick功能?
也许你可以强制关闭模态(参见docs)
$('#myModal').modal('hide');
并使用(参见answer)
导航到锚点$(document.body).scrollTop($('#anchorId').offset().top);
,结果将是:
<强> HTML 强>:
<a class="btn btn-info" href="#" id="contact_btn">Contact Us</a>
<强> jquery的强>:
$('#contact_btn').click(function(){
$('#myModal').modal('hide');
$(document.body).scrollTop($('#anchorId').offset().top);
});
答案 1 :(得分:2)
我遇到过同样的问题,但Lan提供的答案对我不起作用。
最后,我使用onClick
来关闭模态类.modal
,而不是使用我想关闭的特定模态#myModal
的id。这是有效的,因为您的网络中一次只能打开一个模态:
<a href="#section-contact" onClick="$('.modal').modal('hide');">Contact us</a>
答案 2 :(得分:2)
的js
// .my-anchor = the class of the trigger
$('.my-anchor').on('click', function(e) {
e.preventDefault();
// it will search throughout .my-anchor ancestors to find the closest .modal
$(this).closest('.modal').modal('hide');
var hash = this.hash;
$('html, body').animate({ scrollTop: $(hash).offset().top }, 300);
});
HTML
// clicking this link will close the modal and scroll to wherever #products is located on the page
<a href="#products" className="my-anchor">Click Here</a>
在此示例中,哈希将是#products,但它将更新为您可能拥有的任何其他锚
答案 3 :(得分:0)
对于这个问题,我正在使用另一种解决方案。当我有一个带有“部分”概述的模式时,我遇到了同样的问题,我想跳出同一页面上的这个模式到特定部分。我只是在链接中传递节 ID 并通过 GET 选择节 ID 并为该节添加一个 PHP 标头。
我在模态中的 HTML 链接:
<a class="small text-primary stretched-link" href="1.php?section_id=123"></a>
我在同一页面上的 PHP 代码(在标题中的某处):
if($_GET){
$section_id = $_GET['section_id'];
header("Location: 1.php#$section_id");
}
if(!$_GET){
// Nichts wurde übergeben
}
答案 4 :(得分:0)
其他答案都不适合我。但这段代码做到了:
<a href="#contact" onclick='$(".modal").parent().hide()'>contact form</a>