通过here询问有关将字符串中的普通文本替换为URL的问题....如果链接文本被<br/>
标记包围,我希望它能够正常工作。
这是我到目前为止使用的代码,它在一个看似超链接的元素中“链接”文本:
function linkify(inputText) {
var replacedText, replacePattern1, replacePattern2, replacePattern3;
//URLs starting with http://, https://, or ftp://
replacePattern1 = /(\b(https?|ftp):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/gim;
replacedText = inputText.replace(replacePattern1, '<a href="$1" target="_blank">$1</a>');
//URLs starting with "www." (without // before it, or it'd re-link the ones done above).
replacePattern2 = /(^|[^\/])(www\.[\S]+(\b|$))/gim;
replacedText = replacedText.replace(replacePattern2, '$1<a href="http://$2" target="_blank">$2</a>');
return replacedText;
}
当然问题是,如果链接文本是这样的:
<p>Is this:<br/><br/>http://www.google.com<br/><br/>THE best search engine around?</p>
然后我得到的结果就是这个!
<p>Is this:<a href="http://www.google.com">http://www.google.comTHE</a> best search engine around</p>
因此,有两个问题:<br/>
标签被完全剥离,而且<br/>
标签('THIS')之后的文本被视为超链接文本的一部分。
我怎样才能克服这个小而致命的问题?
答案 0 :(得分:3)
我会更多地依赖很多来构建解析功能的浏览器,并让浏览器找出有效的HTML等。
这样的事情应该有效
function linkify(inputText) {
var dom = new DOMParser(),
doc = dom.parseFromString('<div id="wrap">'+ inputText +'</div>', 'text/html'),
ref = doc.getElementById('wrap'),
reg = /[-a-zA-Z0-9@:%_\+.~#?&//=]{2,256}\.[a-z]{2,4}\b(\/[-a-zA-Z0-9@:%_\+.~#?&//=]*)?/gi,
arr = [];
Array.prototype.forEach.call(ref.querySelectorAll('*'), function(node) {
Array.prototype.forEach.call(node.childNodes, function(innerNode) {
if (innerNode.nodeType === 3) arr.push(innerNode);
});
});
arr.forEach(function(node, index) {
node.nodeValue = node.nodeValue.replace(reg, function(x) {
var nxtNode = arr[index+1],
anchor = doc.createElement('a');
if (nxtNode && "nodeValue" in nxtNode) {
anchor.href = x;
anchor.innerHTML = nxtNode.nodeValue;
nxtNode.parentNode.removeChild(nxtNode);
node.parentNode.insertBefore(anchor, node);
node.parentNode.removeChild(node);
}
});
});
return ref.innerHTML;
}
将返回
<p>
<br><br>
<a href="http://www.google.com">THE best search engine around</a>
<br><br>
</p>`
保留所有休息时间,但将它们放在锚点之外
答案 1 :(得分:1)
我建议在你的函数中添加另一个替换来执行你的条带:
function linkify(inputText) {
var replacedText, replacePattern1, replacePattern2, replacePattern3;
//URLs starting with http://, https://, or ftp://
replacePattern1 = /(\b(https?|ftp):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/gim;
replacedText = inputText.replace(/<br\/>/gi, '').replace(replacePattern1, '<a href="$1" target="_blank">$1</a>');
//URLs starting with "www." (without // before it, or it'd re-link the ones done above).
replacePattern2 = /(^|[^\/])(www\.[\S]+(\b|$))/gim;
replacedText = replacedText.replace(replacePattern2, '$1<a href="http://$2" target="_blank">$2</a>');
return replacedText;
}