如何在重定向另一个本地html页面后获取inAppBrowser Close事件..?

时间:2018-04-03 11:29:16

标签: javascript jquery cordova cordova-plugins inappbrowser

我在我的项目中集成了cordova inAppBrowser插件,但是我遇到了一些问题。

如何在我的第二个html页面中获得关于我的ajax成功的inAppBrowser关闭事件。

这是我的第一个html页面代码,

<input type="button" id="pay" value="PAY"></input>

<script type="text/javascript">

     $( document ).ready(function() {

          $("#pay").click(function()
          {
               var ref = cordova.InAppBrowser.open("page2.html", "_blank", "location=yes");
          });

     });

<script>

这是我的第二个html页面代码,

     $( document ).ready(function() {

          $.ajax({
                url: url + "EmailVerified?Email=" + $("#email").val() + "&Amount=" + RechargeValue,
                type: "POST",
                dataType: 'json',
                cache: true,
                async: true,
                success: function (data)
                {
                    //Here i want to close my inAppBrowser window is it Possible..?
                }
          });    

     });

1 个答案:

答案 0 :(得分:0)

ref.addEventListener('exit', onResume);

然后创建一个onResume函数来处理下一步的操作。