0

我的 Enyo 应用程序的 index.html 中有一个图像链接,我想在 webOS 3.0.5 上的新浏览器窗口中重新打开它,这样我就可以减小应用程序本身的图像大小(宽度 =和 height=),但允许用户以原始格式查看它(也有可能扩展它?)。

onLinkClick: "htmlContentLinkClick"

htmlContentLinkClick: function(inSender, inUrl){
    this.$.webView.setUrl(inUrl);
}

该应用程序的链接是:

<img src="images/lookup_cpu.png">

这工作正常,但添加

<a href="images/lookup_cpu.png" target="_blank">[+]</a>

单击时不会在新的浏览器窗口中生成图像。

我认为这是由于 webOS 浏览器不接受本地文件造成的。请问有人有解决这个问题的建议吗?

.............菲尔

4

1 回答 1

1

You are correct that the system browser won't have access to an app's directory. You can open an additional window in your Enyo app. You could look at https://developer.palm.com/content/api/dev-guide/enyo/enyo-windows.html for info on windows. There's other information on multi-window apps on http://developer.palm.com. I hope that's enough to get started.

于 2013-11-08T20:57:26.323 回答