我正在使用来自jquerymsgbox的 jQuery 消息框插件。我要做的是显示一个消息框并使用timeOut = 30sec自动关闭它。
$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
timeOut:30000
});
发布的代码不起作用。我只是一个初学者,不知道该怎么做。
我正在使用来自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});
$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
autoClose:true
});
采用autoClose : true