我有一个页面,附有4-5种不同的模态。每个都有一个唯一的#value(obv)。 我正在尝试从外部源(在本例中为HTML电子邮件)中找到一种链接到这些单独模态的方法。
例如:
“点击此处查看路线”,电子邮件需要链接到 - >> www.myurl.com/#directions
#directions部分应该在页面加载时触发:function并让模态自动打开。
这可能还是我只是在做梦?
答案 0 :(得分:8)
您可以使用hastag来决定要显示的内容。例如,
<强> JS 强>
$(document).ready(function () {
var target = document.location.hash.replace("#", "");
if (target.length) {
if(target=="option1"){
showModal("title1","content1");
}
else if(target=="option2"){
showModal("title2","content2");
}
}else{
showModal("no title","no content");
}
function showModal(title,content){
$('#myModal .modal-title').html(title);
$('#myModal .modal-body').html(content);
$('#myModal').modal('show');
}
});
HTML - Bootstrap模态代码
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">...</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
这将显示option1的内容
http://jsfiddle.net/fFcS2/show/#option1
这将显示option2的内容
http://jsfiddle.net/fFcS2/show/#option2
代码
答案 1 :(得分:3)
很抱歉延迟回来......你的解决方案100%正常工作。 就像我已经有多个模态一样,我修改了这样的代码:
<script type="text/javascript">
jQuery(document).ready(function($) {
var target = document.location.hash.replace("#", "");
if (target.length) {
if(target=="modal1link"){
$('#modal1').modal('show');
}
else if(target=="modal2link"){
$('#modal2').modal('show');
}
else if(target=="modal3link"){
$('#modal3').modal('show');
}
}else{
}
});
</script>
答案 2 :(得分:1)
如果有人来这里寻找动态解决方案(你不必预先定义模态ID),请点击此处:
$(document).ready(function() {
var url = window.location.href;
var modalToOpen = url.substring(url.indexOf("#"));
if(window.location.href.indexOf(modalToOpen) != -1) {
$(modalToOpen).modal("show");
}
});
此脚本抓取当前URL,在URL中的哈希后找到id,然后显示具有相应id的模式。