這是js代碼JavaScript變量包含純文本包括HTML標籤
function startChatSession(){
$.ajax({
url: "chat.php?action=startchatsession",
cache: false,
dataType: "json",
success: function(data) {
username = data.username;
$.each(data.items, function(i,item){
if (item) { // fix strange ie bug
chatboxtitle = item.f;
if ($("#chatbox_"+chatboxtitle).length <= 0) {
createChatBox(chatboxtitle,1);
}
if (item.s == 1) {
item.f = username;
}
if (item.s == 2) {
$("#chatbox_"+chatboxtitle+" .chatboxcontent").append('<div class="chatboxmessage"><span class="chatboxinfo">'+item.m+'</span></div>');
} else {
$("#chatbox_"+chatboxtitle+" .chatboxcontent").append('<div class="chatboxmessage"><span class="chatboxmessagefrom">'+item.f+': </span><span class="chatboxmessagecontent">'+item.m+'</span></div>');
}
}
});
這裏+ item.m +持有明文
,如果它包含HTML標記,然後返回HTML標籤也
例如+ item.m +包含
<b>Hello</b>
我想輸出是
你好
但我得到相同的輸出
<b>Hello</b>
這個代碼在IM聊天來實現,我需要的html代碼在聊天窗口中執行。 。 。所以請幫我建議得到執行HTML這裏
謝謝
它看起來像'item.m'可能使用HTML實體而不是文字'<' and '>'字符。 – crush
'item.m'中的HTML標籤必須使用htmlentities或類似的東西進行編碼。因此,它們不會被瀏覽器解釋爲HTML標籤。 –
檢查輸出是否爲html編碼,例如它實際上是'<b>你好...'。 –