gpt4 book ai didi

javascript - 设置 jQuery UI 对话框按钮 id?

转载 作者:行者123 更新时间:2023-12-03 21:47:16 24 4
gpt4 key购买 nike

是否可以在 jQuery UI 对话框中设置按钮的 ID,以便我稍后可以通过 jQuery 引用它们?例如触发事件、禁用等?

... in the dialog setup ...
buttons: {
"Sök": function () {
var bValid = true;
},
"OK": function () {
if (OK()) {
getStuffNoteringar($("#txtStuffId").val());
$(this).dialog("close");
}
}

.... later on in some javascript code....

$('#OK').click();

最佳答案

$("#myDialog").dialog({
buttons : {
"MyButton" : {
text: "OK",
id: "okbtnid",
click: function(){
var bValid = true;
}
}
}
});

关于javascript - 设置 jQuery UI 对话框按钮 id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10312835/

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