html5plus
項(xiàng)目是用HTML5+開發(fā)的粹胯,嵌入另一個項(xiàng)目已經(jīng)完成的頁面,用iframe來完成的销部。但是在ios端出現(xiàn)不兼容問題缴饭,然后就用這個plus.webview.create
來解決
openWebUrl(url, title) {
let webview = plus.webview.create(url);
webview.setStyle({
titleNView: {
titleText: title,
autoBackButton: false,
backgroundColor: "#FFFFFF",
titleSize: "14px",
height: "48px",
tags: [{
tag: 'rect',
id: 'rect',
color: '#e5e5e5',
position: {
bottom: '0px',
left: '0px',
width: '100%',
height: '1px'
}
}, ],
buttons: [{
type: "back",
float: "left",
onclick: function() {
webview.canBack(function(e) {
if (e.canBack) //是否可以返回
{
webview.back();
} else {
webview.close()
}
})
}
}]
},
});
webview.show();
},