欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

36、Node对象的属性

程序员文章站 2022-06-13 13:01:57
...

属性一:标签节点、属性节点、文本节点

36、Node对象的属性

<!DOCTYPE html>
<html lang="en">
<head>
	
</head>
<body>
	<span id="spanId">嘻嘻哈哈</span><hr/>
</body>
<script type="text/javascript">
	//获取标签对象
		var span1 = document.getElementById("spanId");
		document.write("nodeType:"+span1.nodeType+", ");
		document.write("nodeName:"+span1.nodeName+", ");
		document.write("nodeValue:"+span1.nodeValue+", ");
		document.write("<hr/>");
	//获取属性对象
		var id1 = span1.getAttributeNode("id");
		document.write("nodeType:"+id1.nodeType+", ");
		document.write("nodeName:"+id1.nodeName+", ");
		document.write("nodeValue:"+id1.nodeValue+", ");
		document.write("<hr/>");
	//获取文本对象
		var text1 = span1.firstChild;
		document.write("nodeType:"+text1.nodeType+", ");
		document.write("nodeName:"+text1.nodeName+", ");
		document.write("nodeValue:"+text1.nodeValue+", ");
		document.write("<hr/>");
</script>
</html>

36、Node对象的属性

属性二:父节点、子节点、同辈节点36、Node对象的属性

36、Node对象的属性
36、Node对象的属性