document.body 的问题
有两个问题问一下啊<body><h1>hello!</h1><body><script>document.write(document.body.firstChild.i...
有两个问题问一下啊
<body>
<h1>hello!</h1>
<body>
<script>
document.write(document.body.firstChild.innerText);
//有没有document.body[]这样的格式?document.all[]有这样的格式啊?
</script>
<body>
<h1>hello!</h1>
<body>
<script>
document.write(document.body.firstChild.innerHTML);
</script>
innerText和innerHTML结果为什么一样? 展开
<body>
<h1>hello!</h1>
<body>
<script>
document.write(document.body.firstChild.innerText);
//有没有document.body[]这样的格式?document.all[]有这样的格式啊?
</script>
<body>
<h1>hello!</h1>
<body>
<script>
document.write(document.body.firstChild.innerHTML);
</script>
innerText和innerHTML结果为什么一样? 展开
1个回答
展开全部
首先,先和你说一个标准的问题,请不要用document.body和document.all,否则除IE外的浏览器不认帐!
标准的元素获取方法只有以下三个:
document.getElementById(元素的ID);
document.getElemetsByName(元素的name);在IE下只能获取到<input />
document.getElemetsByTagName(元素的标签名);
比如document.body
最好是写成document.getElementsByTagName("body")[0];
然后回答一下问题
<h1>hello!</h1>
它的innerHTML和innerText都是hello!
<h1>hello!<b>asdfasdf</b></h1>
它的innerHTML是hello!<b>asdfasdf</b>
它的innerText是hello!asdfasdf
标准的元素获取方法只有以下三个:
document.getElementById(元素的ID);
document.getElemetsByName(元素的name);在IE下只能获取到<input />
document.getElemetsByTagName(元素的标签名);
比如document.body
最好是写成document.getElementsByTagName("body")[0];
然后回答一下问题
<h1>hello!</h1>
它的innerHTML和innerText都是hello!
<h1>hello!<b>asdfasdf</b></h1>
它的innerHTML是hello!<b>asdfasdf</b>
它的innerText是hello!asdfasdf
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询