我通过一些推荐链接重定向到Android手机中的谷歌播放商店(应用),但重定向后我无法关闭浏览器标签。我试过window.close()
;但它不起作用。
就像在这里,如果你在移动镀铬浏览器中单击此链接,它将提示Android Play商店。 flipkart.com/mobile-apps
<body>
<script>
window.location.href = "https://play.google.com/store/apps/details?id=com.bt.bms";
</script>
<noscript>
<meta http-equiv="refresh" content="0;URL= " http:>
</noscript>
</body>
答案 0 :(得分:0)
大多数浏览器都不允许关闭标签页。有些人会显示一个警告,询问用户是否要关闭标签。
您是否可以使用当前标签链接到Google Play商店?而不是开一个新的?
<a href="https://play.google.com/store/apps/details?id=com.bt.bms" target="_self">Download My App</a>
target="_self"
是默认设置,因此不需要。
如果您只想在新标签/窗口中展示Google Play商店,只需添加指向您网页的链接,如下所示:
<a href="https://play.google.com/store/apps/details?id=com.bt.bms" target="_blank">Download My App</a>
这将在新标签页中打开Playstore。