gpt4 book ai didi

javascript - 在 Ruby on Rails 中重新加载页面后打开模式

转载 作者:行者123 更新时间:2023-11-30 14:41:06 26 4
gpt4 key购买 nike

在我的 ruby​​ 应用程序中,我希望我的模式在页面重新加载后打开..

我试过下面的代码...

:javascript
$(document).ready( function() {
$(".minus").click(function(){
location.reload();
$('#memberModal').modal('show');
});
} );

请帮我解决一下..

提前致谢

最佳答案

您不能在 location.reload() 之后调用模态,因为页面已被解构。

我建议添加而不是使用重新加载。

如果您真的想要,请尝试向位置添加属性并根据它打开模态。

$(".minus").click(function(){
// change it according to your use case
document.location = document.location + "#memberModal";
}

$(document).ready(function(){
if (window.location.hash != null){
$(window.location.hash.substr(1)).modal('show');
}
})

关于javascript - 在 Ruby on Rails 中重新加载页面后打开模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49651847/

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