我正在尝试在用户单击模式时打开模式。我目前正在使用弹出式窗口制作器。
例如www.hello.com/test
/ test是模式链接的#变量。
<a href="#test" class="hello"> Im a hidden modal in a link menu</a>
我尝试阅读弹出式窗口制造商的文档,而我需要这样做。
<a href="#popmake-123" class="hello"> Im a hidden modal in a link menu</a>
但是,当我尝试输入类似“ www.hello.com/#popmake-123”的链接时,没有自动模式显示。
到目前为止,我尝试使用这些代码。
$(window.location.hash).modal('show');
$('a.popmake-user-login').click(function(){
window.location.hash = $(this).attr('href');
});
但是什么也没发生。预先谢谢你们。
(链接源) Bootstrap 3.x: how to have url change upon clicking modal trigger?
答案 0 :(得分:0)
尝试此代码
jQuery(document).ready(function(){
jQuery(window.location.hash).modal('show');
jQuery('a.popmake-user-login').click(function(){
window.location.hash = jQuery(this).attr('href');
});
});