用户在文本框中输入语句后,我必须创建一个链接。
答案 0 :(得分:1)
您将如何创建普通超链接?
<a href="...">Hai</a>, How are you
答案 1 :(得分:1)
假设jQuery
标记是正确的并且您想要DOM操作,这是一个答案:
<button>Link words</button>
<div id="sentence">Hai, How are you</div>
var jqSentence = $('div#sentence');
var aSentence = jqSentence.html().split(' ');
function LinkWord(iIndex, sHref) {
aSentence[iIndex] = '<a href="' + sHref + '">' + aSentence[iIndex] + '</a>';
jqSentence.html(aSentence.join(' '));
}
$('button:first').click(function(){
LinkWord(1, '/some/path');
LinkWord(3, '/some/other/path');
});