6

由于我发现卸载 webapp 的唯一方法是转到 about:apps 页面,因此我想编写以下代码:

 <p>To uninstall the webapp, please go to 
 <a href="about:apps">about:apps</a></p>

但是,在 Firefox v21 上它不会打开任何页面。

然后,我也使用 about:config 失败了。

 <a href="about:config">about:config</a>

因此,我想知道是否可以提供指向 about:apps 或 about:config 的超文本链接...您对此问题有何建议?


编辑: document.location没有帮助

<html>
<body>
<script type="text/javascript">

//document.location = 'http://www.mozilla.org';
// -> OK 

  document.location = 'about:config';
  // -> Error: Access to 'about:config' from script denied
</script>
4

1 回答 1

3

我认为由于安全问题,您很简单,不允许插入指向本地资源的链接。

于 2013-07-02T10:02:56.700 回答