1

当前文本区域:

<textarea id="event_content">
This text area could be full of information..www.london2012.com
And might contain upto 5 links that all need updating.
www.rio2016.org

Link already converted. this should be left.
<a href="http://www.thetimes.co.uk" target="_blank">www.thetimes.co.uk</a>
</textarea>

jquery后所需的Textarea:所有链接都用标签和目标属性清理/替换

<textarea id="event_content">
This text area could be full of information
<a href="http://www.london2012.com" target="_blank">www.london2012.com</a>
And might contain upto 5 links that all need updating.
<a href="http://www.rio2016.org" target="_blank">www.rio2016.org</a>

Link already converted. this should be left.
<a href="http://www.thetimes.co.uk" target="_blank">www.thetimes.co.uk</a>
</textarea>

2012 年 7 月 21 日 - Ωmega 的代码非常感谢,但可以通过保留已转换的链接来改进吗?

4

4 回答 4

9

我相信你正在寻找这样的东西(点击这里测试这个小提琴):

$('#event_content').val(
  $('#event_content').val().replace(/\b(http(s|):\/\/|)(www\.\S+)/ig,
    "<a href='http\$2://\$3' target='_blank'>\$3</a>"));
于 2012-07-20T19:18:57.257 回答
1
var link = $("#event_content");
var text = link.html();
var linktext = '<a href="' + text + '" target="_blank">' + text + '</a>'
link.html(linktext);
于 2012-07-20T14:30:30.103 回答
1
$(function(){
    var old = $('#event_content').val();

    var news = '<a href="http://'+old+'" target="_blank">'+old+'</a>';

    $('#event_content').val(news);
});

请注意,<a>不会在 textarea 中显示,而是会显示纯文本。

演示:http: //jsfiddle.net/3xEh2/1/

于 2012-07-20T14:31:43.130 回答
1

小提琴

这将替换所有链接并将其他文本也保留在那里。

$(function(){
var old = $('#event_content').val();
var news = old.replace("www.london2012.com", '<a href="http://www.rio2016.com" target="_blank">www.rio2016.com</a>');   
$('#event_content').val(news);
});
于 2012-07-20T14:51:31.630 回答