3

我需要知道你会如何调用document.body.innerText;document.body.innerHTML;在 jQuery 中。jQuery如何处理以document.body开头的javascript方法...

谢谢

4

5 回答 5

5
// document.body.innerText;
$('body').text();

.text() 文档

//document.body.innerHTML;
$('body').html();

.html() 文档

于 2012-09-24T19:17:09.063 回答
4

他们在这里 -text()html()

$("body").text()$("body").html()

于 2012-09-24T19:16:45.567 回答
2

使用$('body')$(document.body)选择主体。然后你可以使用.text()and.html()来获取相关内容。

于 2012-09-24T19:18:39.483 回答
1

$("id/class/name/document")是选择,您可以使用(innerhtml html()) 和text()(innertext ) 到那里的内容。

1-文本()

<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
于 2012-09-24T19:19:52.853 回答
0
$('body').text(); // innertext
$('body').html();//innerhtml
于 2012-09-24T19:25:29.923 回答