我正在开发一个与android7的Framework7应用程序集成的phonegap,当我在inAppbrowser中打开一个URL时,它工作正常,但是在inAppbrowser中打开后如何在我点击后退按钮而不是android硬件后返回app主页按钮。
以下是代码:
<form onsubmit="cordova.InAppBrowser.open('url', '_blank', 'location=no'); return false;" method="post" >
<center><input type="submit" value="submit" name="submit">
</form>
回到应用程序代码如下所示:
<input type="submit" id="bck" value="Done">
<script>
$(document).on("click touchstart", '#bck', function() {
window.location = "index.html"; //if i give like this it goes to index page but no functions will work
});
</script>