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 に答える