在Android上我从我的Java应用程序打开了Google Chrome浏览器窗口。在该页面上,我按照javascript关闭浏览器窗口,以便它可以返回到我的Java应用程序。
function die() {
//window.close(); ------ FAIL
//window.history.back(); ------ FAIL
//open(location, '_self').close(); ------ FAIL
$('body').html('<h1>Session closed, i cant help you to close via JavaScript it sucks. Press the back button manually. Yes it stupid but thats the only way?</h1>');
return false;
}
但是上面的window.close或其他选项不起作用。在这种情况下如何关闭浏览器窗口?