gpt4 book ai didi

jquery - 将按钮添加到 jquery ui 对话框

转载 作者:行者123 更新时间:2023-12-03 21:59:07 28 4
gpt4 key购买 nike

我无法向此 jquery ui 对话框添加按钮。如果可能的话请给我一个例子。谢谢。

<script type="text/javascript">
$(document).ready(function () {
//setup new person dialog
$('#dialog2').dialog({
autoResize: true,
show: "clip",
hide: "clip",
height: 'auto',
width: '1000',
autoOpen: false,
modal: true,
position: 'top',
draggable: false,
title: "انتخاب درخواست",
open: function (type, data) {
$(this).parent().appendTo("form");
}
});

$('#viewfaktor').dialog({
autoResize: true,
show: "clip",
hide: "clip",
height: 'auto',
width: '1000',
autoOpen: false,
modal: true,
position: 'top',
draggable: true,
title: "مشاهده صورت ریز",
open: function (type, data) {
$(this).parent().appendTo("form");
}
});


$('#msgBox').dialog({


autoResize: true,
show: "clip",
hide: "clip",
height: 'auto',
width: 'auto',
autoOpen: false,
modal: true,
position: 'center',
draggable: false,



open: function (type, data) {
$(this).parent().appendTo("form");
}


});



});

function showDialog(id) {
$('#' + id).dialog("open");
}

function closeDialog(id) {
$('#' + id).dialog("destroy");
}



</script>

最佳答案

有时您也想在创建对话框后动态添加按钮。看我的answer在问题Add a button to a dialog box dynamically

var mydialog = ... result of jqueryui .dialog()
var buttons = mydialog.dialog("option", "buttons"); // getter
$.extend(buttons, { foo: function () { alert('foo'); } });
mydialog.dialog("option", "buttons", buttons); // setter

关于jquery - 将按钮添加到 jquery ui 对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4031673/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com