当我通过Firefox中的网络清单将网站保存到Android 9主屏幕时,所有href="javascript:whatever()"
链接都被强制在另一个应用浏览器中打开,这就像它们未被识别为本地链接一样。
我尝试在Web清单文件中使用"scope": "/",
,但所做的全部操作完全无法识别该文件,并且默认情况下仅使用元标记。
在Chrome中根本没有问题。
这是清单文件:
{
"name": "xxxxx",
"short_name": "xx",
"description": "xxxxx",
"start_url": "https://www.xxxxx.com",
"background_color": "#cc0000",
"theme_color": "#000000",
"display": "standalone",
"orientation": "portrait",
"icons": [{
"src": "xxxxx.png",
"sizes": "180x180",
"type": "image/png"
}]
}