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

JS -------- document对象学习

程序员文章站 2022-03-19 09:49:27
...
<html>
	<head>
		<title>js-document对象学习</title>
		<meta charset="UTF-8"/>
		<script type="text/javascript">
//			直接获取对象
			function testGetElementById(){       //通过id获取对象
//				var gby=window.document.getElementById();  //window可以省去不写
				var gby=document.getElementById("sid");
				alert(gby);        //输出的返回值是标签的类型[object HTMLInputElement]
			}
			function testGetElementsByName(){       //通过name获取对象
				var gbn=document.getElementsByName("umane");
				alert(gbn);        //输出的返回值类型是[object NodeList]一个对象类型的数组
				alert(gbn.length);    //Nodelist的元素是节点元素,长度是节点的个数。每一个容器或标签算是一个节点。
			}
			function testGetElementsByTagName(){      //通过TagName(标签)获取对象
				var gbt=document.getElementsByTagName("input");
				alert(gbt);        //输出返回值类型是[object HTMLCollection]是一个对象元素的集合
				alert(gbt.length);   //其集合的数目是所有input个数
			}
			function testGetElementsByClassName(){     //通过class获取对象
				var gbc=document.getElementsByClassName("clname");
				alert(gbc);        //输出返回值类型是[object HTMLCollection]是一个对象元素的集合
				alert(gbc.length);   //集合元素的长度是含有传入类属性的元素个数。
			}
//			间接获取对象
			function testParent(){     //利用父节点调用其节点对象
				var showdiv=document.getElementById("showdiv");
				var tchild=showdiv.childNodes;
				alert(tchild);        //输出返回值类型是[object NodeList]的一个list数组
				alert(tchild.length);    //返回子节点的长度 13,是由于在div中和text有换行符算一个子节点
			}
			function  testChild(){     //利用子节点调用其父节点
				var showdiv=document.getElementById("child");
				var tparent=showdiv.parentNode;
				alert(tparent);        //输出返回值类型是[object HTMLDivElement](其父节点的类型)			
			}
			function  testBorther(){     //利用子节点调用其父节点
				var showdiv=document.getElementById("target");
				var topBorther=showdiv.previousSibling;     //输出参考对象上面的元素
				var lowBorther=showdiv.nextSibling         //输出参考元素的下面的元素
				alert(topBorther+":::"+lowBorther);        //输出返回值类型是[object HTMLDivElement](其父节点的类型)			
			}
		</script>
		<style type="text/css">
			.clname{}
			#showdiv{
				border: solid 2px cyan;
				width: 300px;
				height: 400px;
			}
			input[type=text]{
				margin-left: 3px;
			}
		</style>
	</head>
	<body>
		<h3>js-document对象学习</h3>
		<h4>直接调用</h2>
		<input type="button" name="" id="sid" value="测试GetElementById" οnclick="testGetElementById()" />
		<input type="button" name="umane" id="" value="测试GetElementByName" οnclick="testGetElementsByName()" />
		<input type="button" name="" id="" value="测试GetElementsByTagNames"  class="clname" οnclick="testGetElementsByTagName()" />
		<input type="button" name="" id="" value="测试GetElementsByClassName" class="clname" οnclick="testGetElementsByClassName()" />
		<hr /><br />
		<h4>间接调用</h2>
		<input type="button" name="" id="" value="测试Parent" οnclick="testParent()" />
		<input type="button" name="" id="" value="测试 Child" οnclick="testChild()" />
		<input type="button" name="" id="" value="测试Borther" οnclick="testBorther()" />
		<div id="showdiv">
			<input type="text" name="" id="parent" value="" />
			<input type="text" name="" id="child" value="" />
			<input type="text" name="" id="target" value="" />
			<input type="text" name="" id="" value="" />
			<input type="text" name="" id="" value="" />
			<input type="text" name="" id="" value="" />
		</div>
	</body>
</html>

Document:

获取HTML元素:
1:直接获取方式:通过id   通过name属性值    通过标签名   通过class属性值

2:间接获取方式:父子关系   子父关系   兄弟关系

3:操作HTML元素对象的属性   

      操作HTML元素对象的内容和样式

      操作HTML的文档结构

      document操作Form元素

      document操作表格

      document对象实现form表单校验