0
シンプルなJquery UIダイアログを作成して、それを前面に配置したいと思います。Jquery UIダイアログを作成して先頭に移動
var dialog = $(document.createElement("div"));
dialog.attr("id","dialog-confirm");
$("body").append(dialog);
$("#dialog-confirm").dialog({
resizable: false,
height: "auto",
width: 400,
buttons: {
"Delete all items": function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
}
});
dialog.dialog("moveToTop");
このエラーはError: cannot call methods on dialog prior to initialization; attempted to call method 'moveToTop'
です。
私はそれについて何ができますか?
** [ここでうまく動作します](https://jsfiddle.net/Guruprasad_Rao/pwkL2o9m/)** –