jQuery消息框关闭超时

时间:2013-02-07 04:59:04

标签: jquery

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

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

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

2 个答案:

答案 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