gpt4 book ai didi

javascript - 单击 Bootstrap 模式 anchor 时添加 URL 哈希

转载 作者:行者123 更新时间:2023-11-30 00:09:57 24 4
gpt4 key购买 nike

我有一个用于打开模式的 anchor :

<a href="#delete-{{ $id }}" class="btn btn-danger btn-xs btn-delete btn-fla details" data-toggle="modal" data-target="#remove_property_modal">
<i class="fa fa-trash"></i>
</a>

问题是 url 没有从 http://example.com 更改为 http://example.com/#delete-4

最佳答案

在 bootstrap 模态 (docs) 的 show.bs.modal 事件上更改 url 哈希

$(document).ready(function () {
$('.modal').on('show.bs.modal', function (e) {
if (typeof (e.relatedTarget) != "undefined") {
window.location.hash = $(e.relatedTarget).attr('href');
}
});
});

关于javascript - 单击 Bootstrap 模式 anchor 时添加 URL 哈希,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36908267/

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