HTML。Javascript,程序解释
<html><head><title>JavaScript示例,访问DOM结点</title></head><body><p>HelloWorld!</p><p>TheD...
<html>
<head>
<title>JavaScript示例,访问DOM结点</title>
</head>
<body>
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>This example demonstrates the <b>length</b> property.</p>
<script type="text/javascript">
x=document.getElementsByTagName("p");
for (i=0;i<x.length;i++) {
document.write(x[i].innerHTML);
document.write("<br />");
}
document.write(x[2].firstChild.nodeValue);
</script>
</body>
</html>
希望高手能具体解释其中每一行的执行情况 展开
<head>
<title>JavaScript示例,访问DOM结点</title>
</head>
<body>
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>This example demonstrates the <b>length</b> property.</p>
<script type="text/javascript">
x=document.getElementsByTagName("p");
for (i=0;i<x.length;i++) {
document.write(x[i].innerHTML);
document.write("<br />");
}
document.write(x[2].firstChild.nodeValue);
</script>
</body>
</html>
希望高手能具体解释其中每一行的执行情况 展开
展开全部
<script type="text/javascript">
x=document.getElementsByTagName("p");//将所有<p>标签对象的集合赋值给x
for (i=0;i<x.length;i++) { //遍历所有的<p>标签
document.write(x[i].innerHTML);//将每个<p>标签内的内容打印到页面上
document.write("<br />");//每打印一个一换行
}
document.write(x[2].firstChild.nodeValue);//将第三个<p>标签中的第一个节点的值打印出来即"This example demonstrates the "
</script>
x=document.getElementsByTagName("p");//将所有<p>标签对象的集合赋值给x
for (i=0;i<x.length;i++) { //遍历所有的<p>标签
document.write(x[i].innerHTML);//将每个<p>标签内的内容打印到页面上
document.write("<br />");//每打印一个一换行
}
document.write(x[2].firstChild.nodeValue);//将第三个<p>标签中的第一个节点的值打印出来即"This example demonstrates the "
</script>
展开全部
<script type="text/javascript">//声明是javascript脚本编程语言
x=document.getElementsByTagName("p");//document是整个html文档的意思。整句就是返回文档中拥有指定标签名“P”的所有元素
for (i=0;i<x.length;i++) { //x.length是指x数组的长度。
document.write(x[i].innerHTML);//输出每个"p"标签内的内容
document.write("<br />");//输出HTML的换行标记,且执行换行。
}
document.write(x[2].firstChild.nodeValue);//将第三个“P”标签中的第一个节点的值打印出来(也就是输出出来)
x=document.getElementsByTagName("p");//document是整个html文档的意思。整句就是返回文档中拥有指定标签名“P”的所有元素
for (i=0;i<x.length;i++) { //x.length是指x数组的长度。
document.write(x[i].innerHTML);//输出每个"p"标签内的内容
document.write("<br />");//输出HTML的换行标记,且执行换行。
}
document.write(x[2].firstChild.nodeValue);//将第三个“P”标签中的第一个节点的值打印出来(也就是输出出来)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
<title>JavaScript示例,访问DOM结点</title>
</head>
<body>
<!--创建3个段落 其中length加重-->
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>This example demonstrates the <b>length</b> property.</p>
<script type="text/javascript">
<!--检索元素标名为p的内容 赋值给x-->
x=document.getElementsByTagName("p");
<!--利用for循环在页面上打印出x中内容 并每行多一个换行-->
for (i=0;i<x.length;i++) {
document.write(x[i].innerHTML);
document.write("<br />");
}
<!--打印x中存储的第三个字符串的首个子节点的值-->
document.write(x[2].firstChild.nodeValue);
</script>
</body>
</html>
<head>
<title>JavaScript示例,访问DOM结点</title>
</head>
<body>
<!--创建3个段落 其中length加重-->
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>This example demonstrates the <b>length</b> property.</p>
<script type="text/javascript">
<!--检索元素标名为p的内容 赋值给x-->
x=document.getElementsByTagName("p");
<!--利用for循环在页面上打印出x中内容 并每行多一个换行-->
for (i=0;i<x.length;i++) {
document.write(x[i].innerHTML);
document.write("<br />");
}
<!--打印x中存储的第三个字符串的首个子节点的值-->
document.write(x[2].firstChild.nodeValue);
</script>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就是通过获取document.getElementsByTagName("p")元素里面的内容赋值给X。 然后用FOR循环每行输出一个节点,最后输出第三个P元素的得首字节。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询