ホームページ > 記事 > ウェブフロントエンド > JavaScript ダイアログ jsdialog
function ShowCallBack(opt) {
opt.obj.close();
}
function ShowAlert()
{
var Pop=new txooo.ui.Popup({ contentType:4,isReloadOnClose:false,width :340,height:100});
Pop.setContent("タイトル","警告警告ボックスの例");
Pop.setContent("alertCon", "警告ダイアログ ボックスの内容");
Pop.setContent(" callBack", ShowCallBack);
Pop.setContent("parameter", { id: "divCall", str: "OK をクリックした後に表示される文字列", obj: Pop });
Pop.build();
Pop .show ();
}