gpt4 book ai didi

javascript - 显示几秒钟后如何隐藏django消息

转载 作者:行者123 更新时间:2023-11-30 14:27:44 24 4
gpt4 key购买 nike

例如,在重定向之前,我使用

messages.add_message(request, messages.INFO, 'You have successfully updated your listing.')

然后消息会在重定向后自动显示,但是消息永远不会消失,请问如何在几秒后隐藏它?

谢谢!!!

最佳答案

需要写javascript代码,使用window setTimeout() 一段时间后隐藏消息的方法。

// suppose the `id` attribute of element is `message_container`.
var message_ele = document.getElementById("message_container");

setTimeout(function(){
message_ele.style.display = "none";
}, 3000);
// Timeout is 3 sec, you can change it

Put this code inside base.html at the bottom inside <script> tag, so whenever page reloaded after 3 sec it will make your message disappear.

关于javascript - 显示几秒钟后如何隐藏django消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51682084/

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