gpt4 book ai didi

javascript - 基于 URL 中的 HASH 打开 Bootstrap 模式

转载 作者:行者123 更新时间:2023-12-02 14:42:18 26 4
gpt4 key购买 nike

如果 URL 包含带有 id 参数的 HASH,如何在页面加载后打开 delete Bootstrap 模式?

示例:

http://example.com/properties#delete-86

最佳答案

您可以在脚本开头执行以下操作:

// You can retrieve the id in 'matches' variable if needed
if (matches = window.location.href.match(/#delete-([0-9])+/))
{
$('#my-modal').modal('show');
}

关于javascript - 基于 URL 中的 HASH 打开 Bootstrap 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36917775/

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