javascript firstchild和lastchild节点问题?
<blockquotecite="http://www.w3.org/DOM/"><p>Aplatform-andlanguage-neutralinterfacetha...
<blockquote cite="http://www.w3.org/DOM/">
<p>
A platform-and language-neutral interface that will allow programs
and scrips to dynamically access and update the content,structure and style of documents.
</p>
</blockquote>
var myblockquote = document.getElementsByTagName("blockquote");
alert(myblockquote.firstchild);
alert(myblockquote.firstchild);
为什么两个alert都输出Text, blockquote 的子节点不应该是<p>吗?输出应该是一个HTMLElement啊?
我好像明白点了什么,blockquote下的<p>之前和</p>之后都有个回车之类的字符,这些是不是都是独立的text节点呢?如果去掉这些字符使<p>和<blockquote>相邻的话,那么<blockquote>的firstchild就是<p>了吧? 求高手解答下? 展开
<p>
A platform-and language-neutral interface that will allow programs
and scrips to dynamically access and update the content,structure and style of documents.
</p>
</blockquote>
var myblockquote = document.getElementsByTagName("blockquote");
alert(myblockquote.firstchild);
alert(myblockquote.firstchild);
为什么两个alert都输出Text, blockquote 的子节点不应该是<p>吗?输出应该是一个HTMLElement啊?
我好像明白点了什么,blockquote下的<p>之前和</p>之后都有个回车之类的字符,这些是不是都是独立的text节点呢?如果去掉这些字符使<p>和<blockquote>相邻的话,那么<blockquote>的firstchild就是<p>了吧? 求高手解答下? 展开
2个回答
展开全部
var myblockquote = document.getElementsByTagName("blockquote");
// 你的伍碰mybolckquote 是个数组啊,哪里可以直接获取啊,firstchild都写错了
alert(myblockquote.firstchild);
alert(myblockquote.firstchild);
应该是这样腔渣谈的
var myblockquote = 梁橡document.getElementsByTagName("blockquote")[0];
// 这个才是啊
myblockquote.children[0]
你说的那个firstChild,是这个意思啦
追问
那些拼写细节,我源程序是没有问题的,数组我也是知道的,只是提问的时候没有复制出来,关键问题是 blockquote下的之前和
之后都有个回车之类的字符,这些是不是都是独立的text节点呢?如果去掉这些字符使和相邻的话,那么的firstchild就是了吧?
追答
你说的没错,是那些回车什么的字符
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询