0

div 内のテキストから最初の 2 行を選択する方法はありますか。

Content in div:

/*------------------------
| some content goes here |
| inside div or any      |
| container in HTML. is  |
| it possible to select  |
| first two lines        |
| displaying in browser  |
----------------------- */

SelectedText = "some content goes here inside div or any"
4

2 に答える 2

0

こんにちは、以下のコードを確認できます

 <script type="text/javascript">
function runTest(){
var str=document.getElementById("id1").value;
var arr = str.split(/[\n\r]/g);
alert(arr[0]+arr[1]);
}
</script>
<textarea id="id1">
some content goes here
inside div or any
container in HTML. is 
it possible to select
first two lines 
displaying in browser
</textarea>

<a href="#" onClick="runTest();">myLink</a>
于 2013-09-11T05:25:05.653 に答える
0
var first_line = $("#divElement").text().split("\n")[1];
var second_line = $("#divElement").text().split("\n")[2];

JSFiddle の例

于 2013-09-11T05:16:35.240 に答える