是否有可能在cordova inapprowser的屏幕上显示图像?
如果我使用ref.executeScript将图像宽度设置为屏幕的100%,那么它的页面尺寸仍大于屏幕,我可以向左滚动
var ref = window.open(path, param, "location=no,suppressesIncrementalRendering=yes,enableViewportScale=yes");
ref.addEventListener('loadstop', function() {
ref.executeScript({
code: "var imageResize = document.querySelectorAll('img'); var screenWidth = window.innerWidth; for (var i = 0; i < imageResize.length; i++) {imageResize[i].style.width = screenWidth + 'px';}" });
});