ionic-framework
Ionicでダイアログを作成する
サーチ…
パラメーター
パラメーター | 詳細 |
---|---|
title: '', | //文字列。ポップアップのタイトル。 |
cssClass: '' 、 | // String、カスタムCSSクラス名 |
subTitle: '' 、 | //文字列(オプション)。ポップアップのサブタイトル。 |
template: '' 、 | //文字列(オプション)。ポップアップボディに配置するhtmlテンプレート。 |
templateUrl: '' 、 | //文字列(オプション)。ポップアップボディに配置するHTMLテンプレートのURL。 |
scope: null, | //スコープ(オプション)。ポップアップコンテンツにリンクする範囲。 |
備考
Ionic Popupサービスを使用すると、プログラムを使用して、継続するためにユーザーが応答する必要があるポップアップウィンドウを作成して表示することができます。
Ionicでダイアログを作成する
// An alert dialog
$scope.showAlert = function() {
var alertPopup = $ionicPopup.alert({
title: 'Don\'t eat that!',
template: 'It might taste good'
});
alertPopup.then(function(res) {
console.log('Hello your first example.');
});
};
});
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow