在html标签之间查找文本并将其放入变量中

时间:2012-11-14 15:45:28

标签: javascript jquery html

我想在html标签之间获取文本,例如:

<div id="text">
This is the text I want to put into a variable for later use.
</div>

这就是我想要对变量做的事情:

var = ????thedivtext????;

$(function(){
$("#text").val(thedivtext);
)}

...谢谢

2 个答案:

答案 0 :(得分:2)

你需要 text() jquery函数,如果你需要,文本方法不会给出html标签然后使用html()

<强> Live Demo

var v = $("#text").text();

答案 1 :(得分:2)

var text = $("#text").text();会为您提供文字。