gpt4 book ai didi

javascript - 在 Jquery UI 对话框中禁用按钮?

转载 作者:行者123 更新时间:2023-11-30 08:48:02 25 4
gpt4 key购买 nike

我使用由服务器提供的 HTML 制作的 jQuery UI 对话框。代码:

 $("<div id='pastedial'>" + result.htmlPasteDialog + "</div>").dialog({
maxHeight: "85%",
minWidth: 700,
modal: true,
buttons: {
Cancel: function () {
// do cancel
},
"Paste!": function () {
// do action
}
// some other config

});
}

我将验证对话框的事件处理程序附加到对话框元素。这很好用。验证功能只是页面的另一个功能,它根据我直接知道的 ID 来处理对话框项目。

如何从外部函数(属于页面)处理对话框的按钮,以便在对话框未验证时禁用操作?

提前致谢!

最佳答案

我使用它,它与 Babblo 几乎相同,但搜索的是按钮的标题。希望对您有所帮助。

function test() {
$("#pastedial")
.next(".ui-dialog-buttonpane")
.find("button:contains('Paste!')")
.button("option", "disabled", true);
}

关于javascript - 在 Jquery UI 对话框中禁用按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20218713/

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