mui.plusReady(function() {
var self = plus.webview.currentWebview();
self.setStyle({
subNViews: [{
id: 'subnview1',
styles: {
top: '100px',
height: '500px',
backgroundColor: '#FF0000'
},
tags: [{
tag: 'font',
id: 'font',
text: '顶部原生子View控件',
textStyles: {
size: '18px'
}
}]
}]
});
var nw = self.getSubNViews();
console.log('---')
console.log(JSON.stringify(nw));
});
这样放上subNViews之后确实是有了,因为console出来了,但是它不显示,是为什么????
0 个回复