gpt4 book ai didi

onsen-ui - Onsen UI ons.notification.alert 问题

转载 作者:行者123 更新时间:2023-12-02 08:43:09 26 4
gpt4 key购买 nike

下面的代码

var i=0;
i++;
ons.notification.alert({message: i});
i++;
ons.notification.alert({message: i});
i++;
ons.notification.alert({message: i});

警报结果为:

3
2
1

有人可以解释一下 Onsen Alert 的机制吗?

谢谢。

最佳答案

它们同时显示,但最后一个会显示在其他的上面。

如果你想按顺序显示它们,你需要使用callback参数。

ons.notification.alert({
message: 'First message',
callback: function() {
ons.notification.alert({
message: 'Second message'
});
}
});

http://codepen.io/argelius/pen/qdoZXX

关于onsen-ui - Onsen UI ons.notification.alert 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31229420/

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