标签: 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); )}
...谢谢
答案 0 :(得分:2)
你需要 text() jquery函数,如果你需要,文本方法不会给出html标签然后使用html()
<强> Live Demo 强>
var v = $("#text").text();
答案 1 :(得分:2)
var text = $("#text").text();会为您提供文字。
var text = $("#text").text();