<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<meta http-equiv="content-Type" content="text/html; charset=utf-8"/>
<head>
<title>Title</title>
<script type="text/javascript">
function getVal(){
var h1Nodes = document.getElementsByTagName("h1");
//alert(h1Nodes[0].firstChild.nodeValue);
//alert(h1Nodes[0].lastChild.nodeValue);
//alert(h1Nodes[0].childNodes[0].nodeValue);
//alert(h1Nodes[0].innerHTML);
alert(h1Nodes[0].innerText);
}
</script>
</head>
<body>
<h1>明天休息</h1>
<input type="button" value="取值" onclick="getVal()"/>
</body>
</html>