我需要知道如何在jQuery中调用document.body.innerText;
和document.body.innerHTML;
。 jQuery如何处理以document.body ...
由于
答案 0 :(得分:5)
// document.body.innerText;
$('body').text();
//document.body.innerHTML;
$('body').html();
答案 1 :(得分:4)
答案 2 :(得分:2)
使用$('body')
或$(document.body)
选择正文。然后,您可以使用.text()
和.html()
来获取相关内容。
答案 3 :(得分:1)
$("id/class/name/document")
是选择,您可以使用html()
(innerhtml
)和text()
(innertext
到那里的内容。
1- text()
<div class="demo">Demonstration Box</div>
The code $('.demo').text() would produce the following result:
这是选择 - ^^^^^^^ ^^^^^^ ---到班级demo
的内容
输出:
Demonstration Box
2- html()
<div class="demo"><p>Demonstration Box</p></div>
$("input").html("text"); will change the---^^^^^^^^^^^^^^^^^---to text
答案 4 :(得分:0)
$('body').text(); // innertext
$('body').html();//innerhtml