|
现在图片路径调用下面的方法为什么不在浏览器中显示了,我记得刚开始是直接显示在浏览器中的
如果我需要图片显示在手机的浏览器里该怎么改?
//显示图片和视频
Model.prototype.fileListClick = function(event) {
$("#operateLabel").text(" ");
$("#resultLabel").text("");
var data = this.comp("fileData");
var url = data.getValue("filePath");
if (justep.Browser.isX5App && justep.Browser.isAndroid) {
window.open(url,"_system");
//window.open(url,"_blank");
//window.open(url, '_blank', 'toolbarposition=top,location=no,enableViewportScale=yes');
} else {
window.open(url, '_blank', 'toolbarposition=top,location=no,enableViewportScale=yes');
}
}; |
|