我有這樣的動態HTML:rebulid href標記與jQuery
<div class="msg_body">
<p>
some text... |URI=http://www.somesite.co.il/|some link|EURI| some text |URI=http://www.somesite.co.il/|some link|EURI| , some text...
</p>
我需要提取的URI的字符串和替換:
1. |URI= with [<a href"]
2. | with [>]
3. |EURI| with [</a>]
所以...我需要它像這樣的蜂:
<p>some text... <a href="http://www.somesite.co.il/" target="_blank"></a>some link</a> some text <a href="http://www.somesite.co.il/" target="_blank">some link</a> , some text...</p>
我sta CK在這一點上:
$('.msg_body').find('p').text().replace('|URI=','<a href="');
我如何能做到這一點jQuery的?