我正在使用jquerymsgbox的jQuery消息框插件。我要做的是显示一个消息框并使用timeOut = 30sec自动关闭它。
$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
timeOut:30000
});
发布的代码不起作用。 我只是一个初学者,不知道该怎么做。
答案 0 :(得分:2)
您遗失了某些内容......请在timeout:30000
autoClose:true
所以你有:
$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
autoClose:true,
timeOut:30000});
答案 1 :(得分:0)
$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
autoClose:true
});
使用autoClose : true