我在我的项目中集成了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..?
}
});
});
答案 0 :(得分:0)
ref.addEventListener('exit', onResume);
然后创建一个onResume函数来处理下一步的操作。