这是一个小片段作为例子:
<div id="parentDiv">
<div>child1</div>
<div>child2</div>
</div>
使用CSS我可以这样做:
div#parentDiv { position: absolute; }
div#parentDiv>div { position: relative; }
如何使用javascript进行相同的样式设计?
答案 0 :(得分:2)
试试这个
var parentDiv1 = document.getElementById('parentDiv');
var childDiv = parentDiv1.getElementsByTagName('div');
parentDiv.style.position = "absolute";
for (var i = 0; i < childDiv.length; i++) {
childDiv[i].style.position = "relative";
}
答案 1 :(得分:2)
试试这个:(只有子元素,而不是所有嵌套元素)
var pDiv = document.getElementById('parentDiv');
var cDiv = pDiv.children;
for (var i = 0; i < cDiv.length; i++) {
if (cDiv[i].tagName == "DIV") { //or use toUpperCase()
cDiv[i].style.color = 'red'; //do styling here
}
}
不是最好的,但你可以参考以下内容:( 只是为了更多的知识)
Node.prototype.childrens = function(cName,prop,val){
//var nodeList = [];
var cDiv = this.children;
for (var i = 0; i < cDiv.length; i++) {
var div = cDiv[i];
if (div.tagName == cName.toUpperCase()) {
div.style[prop] = val;
//nodeList.push(div);
}
}
// return nodeList;
}
var pDiv = document.getElementById('parentDiv');
pDiv.childrens('div','color','red');
答案 2 :(得分:-1)
您可以使用以下内容:
document.getElementById('parentDiv').childNodes[0].style.position = "relative";
document.getElementById('parentDiv').style.position = "absolute";