2

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

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

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

4

2 回答 2

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});
于 2013-02-07T05:02:31.107 回答
0
$.msgBox({
title: "Ooops",
content: "Ohh dear! You broke it!!!",
type: "error",
showButtons: false,
opacity: 0.9,
autoClose:true
});

采用autoClose : true

于 2013-02-07T05:02:57.263 回答