我希望我的web应用程序(与ionic一起编译)显示具有自定义标题的每个警报。
我已经点击了离子教程链接http://ionicframework.com/docs/api/components/alert/AlertController,但是它教会了如何仅更改特定警报。
我必须更改每个警报,即使那些警报将通过动态iframe中的代码显示。有可能这样做吗?我怎样才能做到这一点?我已经更改了所有可能的警报,但找不到更改每个警报的方法。
离子CLI:4.0.6 离子框架:离子角3.7.1 @ ionic / app-scripts:3.0.1
Cordova CLI 7.1.0
下面它可以正常工作,但仅适用于一个警报。我必须将每个警报标题都编辑为“ customTitle”,但我找不到该怎么做!
let alert = this.alertCreate({
title: 'customtitle',
message: 'custommessage',
buttons: ['ok'],
cssClass: 'alertCustomCss',
});
alert.present();