gpt4 book ai didi

jQuery消息框关闭超时

转载 作者:行者123 更新时间:2023-12-01 04:15:53 26 4
gpt4 key购买 nike

我正在使用 jquerymsgbox 的 jQuery 消息框插件。我想做的是显示一个消息框并使用 timeOut = 30sec 自动关闭它。

$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
timeOut:30000
});

发布的代码不起作用。我只是一个初学者,不知道该怎么办。

最佳答案

您缺少一些内容...将其添加到 timeout:30000 的正上方

autoClose:true

所以你有:

$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
autoClose:true,
timeOut:30000});

关于jQuery消息框关闭超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14743875/

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