Jump to content
  • 0

Как выбрать текст в JQuery


Raura
 Share

Question

Здравствуйте форумчане!

 

У меня тут токая проблема, есть текст без тегов и надо каждый абзац текста обернуть в тег <p>. Решил обернуть весь текст в <pre> и с помощи JQuery уже добавить абзацам тег, но ничего не получилось.

 

<pre>

  1 строка

  2 строка
  3 строка
  4 строка

</pre>

Подскажите пожалуйста как выбрать например строку 3 в JQuery?, или может есть другой способ решить мою проблему.

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Решение нашел, использовал php. Только надо копировать весь код из firebug в мозиле.

<?php	$fp = fopen("content.txt", "r");	if ($fp){	 while (!feof($fp)){	  $mytext = fgets($fp, 9999);	   echo "<p>".$mytext;	 }	}	else echo "Ошибка при открытии файла";	fclose($fp);?>
Edited by Raura
Link to comment
Share on other sites

  • 0

Не знаю, подойдет такой способ?

http://jsfiddle.net/mrnobody/qpmky0ug/

 

Идея хорошая спасибо. Вот только также как и в моем примере опера не показывает должным образом закрывающий тег, необходимо копировать конечный html из мозилы.

Link to comment
Share on other sites

  • 0

 

Решение нашел, использовал php. Только надо копировать весь код из firebug в мозиле.

<?php	$fp = fopen("content.txt", "r");	if ($fp){	 while (!feof($fp)){	  $mytext = fgets($fp, 9999);	   echo "<p>".$mytext;	 }	}	else echo "Ошибка при открытии файла";	fclose($fp);?>

Если уж использовать php, то проще :

<?php$strings = file("content.txt");Echo '<p>'.join('</p><p>', $strings).'</p>';
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy