$.ajax({
url: "get_title_list.php", //server API name
type: 'POST',
dataType: 'json',
data: {id: id},
async: true,
cache: false,
success: function(response) {
if(response.length!=0)
{
$("#faq").html('');
var html = '';
$.each(response, function(index, array) {
// fi_title:標題文字, fi_content:內容文字
html+='<div class="content">'
+'<table width="100%" border="0">'
+'<tr>'
+'<td style="width:50px;vertical-align:top;"><img src="answer_icon.jpg" style="width:20px;" /></td>'
+'<td style="text-align:left;">'+ array['fi_content'] +'</td>'
+'</tr>'
+'</table>'
+'</div>';
});
$("#faq").append(html);
}
},
});
我將在內容「數組[‘fi_content’]在這個內容可能有一些字符串和一個網址,如下所示。如何從ajax返回數據編碼url然後附加到html?
」歡迎來到我的website.Visit鏈接。 http://www.mypage.com「
在谷歌調試模式下,它看起來像
<p>
Welcome to my website.Visit link.
<a target="_blank" href="http://www.mypage.com">http://www.mypage.com</a>
</p>
我的問題是如何編碼的URL之前追加到HTML嗎? 我可以使用Get URL通過href屬性,並改變它,然後將其追加?用繩子
是否指爲字符串中的所有網址添加鏈接? – FelisCatus
不,我的意思是如何在ajax返回數據中找到一個url,然後將其編碼並再次追加。 – Dreams
你是什麼意思由'編碼',爲了什麼目的?例如, –