<div id="div1"> <p id="p1"> 我是第一个P</p> <p id="p2"> 我是第二个P</p> </div>
window.onload = function () { var str = document.getElementById("p1").innerHTML; alert(str); //弹出 我是第一个P }
<div id="div1"> <p id="p1"> 我是第一个P</p> <p id="p2"> 我是第二个P</p> <input type="text" value="请输入值" name="userName" /> <input type="button" value="确定" onclick="fun1()"> </div>
function fun1() { var username = document.getElementsByName("userName")[0].value; alert(username); //输出userName里输入的值 }
<div id="div1"> <p id="p1"> 我是第一个P</p> <p id="p2"> 我是第二个P</p> </div>
window.onload = function () { var str = document.getElementsByTagName("p")[1].innerHTML; alert(str); //输出 我是第二个P,因为获取的是索引为1的P,索引从0开始 }
window.onload = function () { var arr = document.getElementsByTagName("p"); for (var i = 0; i < arr.length; i++) { alert(arr[i].innerHTML); } }
window.onload = function () { var node = document.getElementById("div1"); var node1 = document.getElementsByTagName("p")[1]; //从获取到的元素再获取 alert(node1.innerHTML); }
<div id="div1"> <p id="p1" class="class1"> 我是第一个P</p> <p id="p2"> 我是第二个P</p> </div>
window.onload = function () { var node = document.getElementsByClassName("class1")[0]; alert(node.innerHTML); }
五、javascript中的CSS选择器
document.querySelector() //根据CSS选择器的规则,返回第一个匹配到的元素 document.querySelectorAll() //根据CSS选择器的规则,返回所有匹配到的元素
<div id="div1"> <p id="p1" class="class1"> 我是第一个P</p> <p id="p2" class="class2"> 我是第二个P</p> </div>
window.onload = function () { var node = document.querySelector("#div1 > p"); alert(node.innerHTML); //输出 我是第一个P
var node1 = document.querySelector(".class2"); alert(node1.innerHTML); //输出 我是第二个P
var nodelist = document.querySelectorAll("p"); alert(nodelist[0].innerHTML + " - " + nodelist[1].innerHTML); //输出 我是第一个P - 我是第二个P }
<div id="div1"> <p id="p1" class="class1"> 我是第一个P</p> <p id="p2" class="class2"> 我是第二个P</p> </div>
window.onload = function () { var node1 = document.querySelector(".class2"); alert(node1.parentNode.innerHTML); //输出 <p id="p1" class="class1">我是第一个P</p><p id="p2" class="class2">我是第二个P</p>
var nodelist = document.getElementById("div1"); var arr = nodelist.childNodes; alert(arr[1].innerHTML + " - " + arr[3].innerHTML); //输出 我是第一个P - 我是第二个P 为什么是1,3呢?因为本方法文本节点也会获取, }
<div id="div1"> 文本1 <p id="p1" class="class1"> 我是第一个P</p> 文本2 <p id="p2" class="class2"> 我是第二个P</p> 文本3 </div>
window.onload = function () { //依次输出,文本1,我是第一个P,文本2,我是第二个P,文本3 var node = document.getElementById("div1"); for (var i = 0; i < node.childNodes.length; i++) { if (node.childNodes[i].nodeType == 1) { alert(node.childNodes[i].innerHTML); } else if (node.childNodes[i].nodeType == 3) { alert(node.childNodes[i].nodeValue); } } }
(2)作为元素树的文档
<div id="div1"> <p id="p1" class="class1"> 我是第一个P</p> <p id="p2" class="class2"> 我是第二个P</p> </div>
window.onload = function () { var node = document.getElementById("div1"); var node1 = node.firstElementChild; var node2 = node.lastElementChild;
alert(node.childElementCount); //输出2,div1一共有两个非文档子元素节点 alert(node1.innerHTML); //输出 我是第一个P alert(node2.innerHTML); //输出 我是第二个P alert(node2.previousElementSibling.innerHTML); //输出 我是第一个P(第二个元素节点的上一个非文本元素节点是P1) alert(node1.nextElementSibling.innerHTML); //输出 我是第二个P(第一个元素节点的下一个兄弟非文本节点是P2) }
<div id="div1"> <p id="p1" class="class1"> 我是第一个P</p> <img src="123.jpg" alt="我是一张图片" id="img1" /> <input type="text" value="我是一个文本框" id="input1" /> </div>
window.onload = function () { var nodeText = document.getElementById("input1"); alert(nodeText.value); //输出 我是一个文本框 var nodeImg = document.getElementById("img1"); alert(nodeImg.alt); //输出 我是一张图片 var nodeP = document.getElementById("p1"); alert(nodeP.className); //输出 class1 注意获取class是className,如果写成nodeP.class则输出undefined }
2、属性的设置,此处同样要注意的是保留字
<div id="div1"> <img src="1big.jpg" alt="我是一张图片" id="img1" onclick="fun1()" /> </div>
function fun1() { document.getElementById("img1").src = "1small.jpg"; //改变图片的路径属性。实现的效果为,当点击图片时,大图变小图。 }
<div id="div1"> <img src="1big.jpg" alt="我是一张图片" class="imgClass" id="img1" onclick="fun1()" /> </div>
function fun1() { document.getElementById("img1").setAttribute("src", "1small.jpg"); alert(document.getElementById("img1").getAttribute("class")); }
4、Attr节点的属性
<div id="div1"> <img src="1big.jpg" alt="我是一张图片" class="imgClass" id="img1" onclick="fun1()" /> </div>
function fun1() { alert(document.getElementById("img1").attributes[0].name); //输出 onclick 注意,通过索引器访问是写在右面在排前面,从0开始 alert(document.getElementById("img1").attributes.src.value); //输出1big.jpg document.getElementById("img1").attributes.src.value = "1small.jpg"; //点击后改变src属性,实现了点击大图变小图效果 }
<div id="div1"> <p id="p1">我是第一个P</p> <p id="p2">我是第<b>二</b>个P</p> </div>
window.onload = function () { alert(document.getElementById("p1").innerText); //注意火狐浏览器不支持innerText alert(document.getElementById("p1").textContent); //基本都支持textContent document.getElementById("p1").textContent = "我是p1,javascript改变了我"; //设置文档Text alert(document.getElementById("p2").textContent); alert(document.getElementById("p2").innerHTML); //innerHTML与innerText的区别,就是对HTML代码的输出方式Text不会输出HTML代码 }
<div id="div1"> <p id="p1">我是第一个P</p> <p id="p2">我是第二个P</p> </div>
window.onload = function () { var textNode = document.createTextNode("<p>我是一个javascript新建的节点</p>"); document.getElementById("div1").appendChild(textNode); }
<div id="div1"> <p id="p1">我是第一个P</p> <p id="p2">我是第二个P</p> </div>
window.onload = function () { var pNode = document.createElement("p"); pNode.textContent = "新建一个P节点"; document.getElementById("div1").appendChild(pNode); }
执行之后HTML代码变为:
<div id="div1"> <p id="p1">我是第一个P</p> </div>
window.onload = function () { var pNode1 = document.createElement("p"); pNode1.textContent = "insertBefore插入的节点"; var pNode2 = document.createElement("p"); pNode2.textContent = "appendChild插入的节点"; document.getElementById("div1").appendChild(pNode2); document.getElementById("div1").insertBefore(pNode1,document.getElementById("p1")); }
执行之后HTML代码为:
<div id="div1"> <p id="p1">我是第一个P</p> <p id="p2">我是第二个P</p> </div>
window.onload = function () { var div1 = document.getElementById("div1"); div1.removeChild(document.getElementById("p2")); }
<div id="div1"> <p id="p1">我是第一个P</p> <p id="p2">我是第二个P</p> </div>
window.onload = function () { var div1 = document.getElementById("div1"); var span1 = document.createElement("span"); span1.textContent = "我是一个新建的span"; div1.replaceChild(span1,document.getElementById("p2")); }
执行完成后HTML代码变为: 十一、javascript操作元素CSS 通过元素的style属性可以随意读取和设置元素的CSS样式,例子:
<head> <title></title> <script type="text/javascript"> window.onload = function () { alert(document.getElementById("div1").style.backgroundColor); document.getElementById("div1").style.backgroundColor = "yellow"; } </script> </head> <body> <div id="div1" style="100px; height:100px; </div> </body>
|