作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有这样的代码:
$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
中运行,但在我的 pad 设备中运行时,当我单击“关闭此窗口”时,窗口无法关闭。
最佳答案
答案就在你的问题本身......你可以试试这个......
newWin.document.write('<input type="button" value="Close this window" onclick="window.close()">');
关于html - 如何在 ionic 中为 Android 设备新打开的窗口添加关闭按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32195319/
我是一名优秀的程序员,十分优秀!