我有这个动态的html:
<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>
我在这一点上堆叠:
$('.msg_body').find('p').text().replace('|URI=','<a href="');
我怎么能在jquery中做到这一点?