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

document对象

程序员文章站 2022-03-18 19:48:03
...

document对象属性:body,cookie,domain,lastModified,referrer,title,URL
document对象方法:
close():关闭用

open() 方法打开的输出流,并显示选定的数据。

<html>
<head>
<script type="text/javascript">
function createNewDoc()
  {
	var newDoc=document.open("text/html","replace");
  	var txt="<html><body>Learning about the DOM is FUN!</body></html>";
  	newDoc.write(txt);
 	 newDoc.close();
  }
</script>
</head>
<body>
	<input type="button" value="Write to a new document"
	onclick="createNewDoc()">
</body>
</html>

  
getElementById():
getElementByName():
getElementByTagName():返回带有指定标签名的对象集合。
write():向文档写 HTML 表达式 或 JavaScript 代码。
writeln():在write()方法换行。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Person OBJ13</title>
<script type="text/javascript">
	document.write("javascript 中自定义对象");
	document.write("<br>");
	
	function Person(){
		alert("Person()函数被调用了");
	}
	
	var p = new Person();
	p.name = "张三";  		//可随意添加属性
	alert(p.name);
	
	Person.name = "不好理解";	//方法及对象
	alert(Person.name);
</script>
</head>
<body>
</body>
</html>

 

 

相关标签: html;docuent;dom