gpt4 book ai didi

javascript - 以编程方式单击消息框中的 "ok"?

转载 作者:行者123 更新时间:2023-11-28 12:24:46 25 4
gpt4 key购买 nike

我有一个包含“确定”和“取消”的消息框。我需要能够使用 Ext JS 5+ 以编程方式单击“确定”。以下是消息框如何工作的代码:

Ext.Msg.show({
title: Your Message Box
message: Message,
buttonText: {ok: 'Confirm', cancel: 'Cancel'},
fn: function(btn){
//Do whatever
}

SOLUTION: Ext.WindowMgr.getActive().query('button[text=ok]')[0].fireHandler();

最佳答案

您可以简单地调用该函数,例如:

function callback(btn){
//Do whatever
}

Ext.Msg.show({
fn: callback
.
.
.
});

现在您可以根据需要调用callback函数:

callback('yes');

关于javascript - 以编程方式单击消息框中的 "ok"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30625181/

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