gpt4 book ai didi

jquery - Bootstrap 3 : URL to auto-open modal?

转载 作者:行者123 更新时间:2023-12-01 07:57:43 24 4
gpt4 key购买 nike

所以我有一个隐藏了 Bootstrap 3 模式的页面,但我想知道是否有一个 URL 可以在其他地方使用来强制模式在页面加载时自动启动。

例如...

页面网址: http://example.com/page

相同的 URL(但模式自动启动): http://example.com/page#myModal

有谁知道这样的事情是否可能?

最佳答案

这个稍微不同的片段对我来说就像一个魅力。它基本上检查加载时 URL 末尾是否包含“#something”。如果是这样,它会显示模式对话框。 Source

$(document).ready(function() {

if(window.location.href.indexOf('#myModal') != -1) {
$('#myModal').modal('show');
}

});

关于jquery - Bootstrap 3 : URL to auto-open modal?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22825270/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com