我有div标签,我在该标签中有一个自由文本(单独)。
<div id= "myDiv">
This is free text
</div>
如何选择该自由文本,并根据其价值,我还做了其他一些事情。
如何选择该免费文字?
更新: div标签中的数据就像这样
<div id= "myDiv">
This is free text one
This is free text two
This is free text three.
</div>
我想要选择第一个?有可能吗?
答案 0 :(得分:3)
firstLine = $('#myDiv').text().split("\n");
console.log(firstLine[1]);
答案 1 :(得分:0)
$(document).ready(function(){
var firstLine = $('#myDiv').text().split("\n")[1];
$("#myDiv").html(firstLine );
});
希望这有用..