popup确认如何知道单击离子1

时间:2018-02-14 04:15:44

标签: javascript jquery ionic-framework

我想知道并在我的应用中触发弹出警报上的OK按钮,这是我的代码:

 $scope.showAlert = function (msg) {
    $ionicPopup.alert({
      title: msg.title,
      template: msg.message,
      okText: 'Baik',
      okType: 'button-positive' ,

    })
  }
$scope.showAlert({
          title: "Update",
          message: "Silahkan Update terlebih dahulu di playstore",
          onTap: function(e) {
            return $window.open('https://google.com', '_self') || true
          }
        });

所以我想要的只是点击OK按钮,它会重定向到外部网址。

0 个答案:

没有答案