想要获得webview选项卡的dom节点并且进行style的设置,但是一直获取不到他的节点,manifest中是这样写的,
"launchwebview": {
"bottom": "0px",
"background": "#fff",
"subNViews": [
{
"id": "tabbar",
"styles": {
"bottom": "0px",
"left": "0",
"height": "50px",
"width": "100%",
"backgroundColor": "#fff"
},
"tags": [
{
"tag": "img",
"id": "homeIcon",
"src": "images/home.png",
"position": {
"top": "0px",
"left": "15%",
"width": "48px",
"height": "48px"
}
},{
"tag": "img",
"id": "mineIcon",
"src": "images/geren.png",
"position": {
"top": "0px",
"left": "75%",
"width": "48px",
"height": "48px"
}
}
]
}
]
},
并且在index.html中想要获取他的dom节点
document.getElementById("tabbar")
一直返回的是null,,请问如何获取正确节点呢?
1***@qq.com (作者)
那这样的话,我想要动态改变他的样式,如何才能改变呢?
2018-11-27 16:22