gpt4 book ai didi

Javascript 引导箱回调

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

我使用 bootbox 来实现灵活的对话框和警报,因为以下回调函数遇到了问题:

var qty= 0;
bootbox.prompt({
title: "Insert qty!",
inputType: 'number',
callback: function (result) {
qty = result;
}
});

alert(qty);

我的警报在启动框对话框打开之前触发。为什么在启动框对话框之前触发警报?如何避免在 bootbox 对话框中得到 0 而不是所需的值?

最佳答案

将警报放入回调中,例如:

var qty= 0;
bootbox.prompt({
title: "Insert qty!",
inputType: 'number',
callback: function (result) {
qty = result;
alert(qty);
}
});

这应该可以解决您的问题;)

关于Javascript 引导箱回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52641524/

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