如何在Android设备的离子中为新打开的窗口添加关闭按钮?

时间:2015-08-25 04:02:05

标签: html angularjs ionic-framework

我有这样的代码:

$scope.viewOrderDetails = function viewOrderDetails(detail) {
    var newWin = open('orderdetails.html','windowName','height=300,width=300');
    newWin.document.write('html to write...');
    newWin.document.write(detail);
    //<input type="button" value="Close this window" onclick="self.close()">
}

我想为newWin添加关闭按钮。我怎样才能做到这一点?感谢。

更新:

newWin.document.write('<input type="button" value="Close this window" onclick="window.close()">');

它适用于ionic serve,但在我的打击垫设备中运行时,当我点击&#34;关闭此窗口&#34;时,窗口无法关闭。

1 个答案:

答案 0 :(得分:2)

答案就在你自己的问题中......你可以试试这个......

newWin.document.write('<input type="button" value="Close this window" onclick="window.close()">');