我试图在弹出窗口中获取图像,以超链接到存储在我公司服务器上的完整尺寸图像。简单的href不起作用,我尝试使用cordova插件inappbrowser没有任何成功。我在Weinre进行调试,所以如果它不起作用,我就不会收到任何错误消息。当用户点击弹出窗口中的预览图像时,我只需要链接到图像。这是我的剧本:
function gpChartResultAvailable(results, messages) {
domAttr.set(dom.byId("chartLink"), "innerHTML", "Three Week Chart");
//clear any existing features displayed in the popup
map.infoWindow.clearFeatures();
var content = "";
if (results == 0) {
var chartPath = "http://ourserver.com/Test_Charts/Three_Week_Chart_for_" + locationStr + ".png";
content = '<IMG SRC="' + chartPath + '" width=100% height=100%/><br/><br/>';
} else {
content = " Unable To Generate Chart";
}
map.infoWindow.resize(225, 145);
map.infoWindow.reposition();
map.infoWindow.setContent(content);
map.infoWindow.setTitle(locationStr);
};