我有我想要注入一些HTML代碼標籤...... html代碼是這樣的...如何使用jquery注入html代碼?
line:1 3spaces b4<br /><br />line:3 5spaces
B4 < BR/> 5spaces B4,行:4
如果我使用.text注入此代碼,它只顯示文本,但不顯示html代碼。我想將它轉換爲html代碼,我該怎麼做?謝謝。
我有我想要注入一些HTML代碼標籤...... html代碼是這樣的...如何使用jquery注入html代碼?
line:1 3spaces b4<br /><br />line:3 5spaces
B4 < BR/> 5spaces B4,行:4
如果我使用.text注入此代碼,它只顯示文本,但不顯示html代碼。我想將它轉換爲html代碼,我該怎麼做?謝謝。
解決它,
我需要有一個變種htmlCode第一,將其轉換爲解碼HTML代碼,並使用HTML功能......謝謝大家。
var htmlCode = $("<p/>").html("line:1 3spaces b4<br /><br />line:3 5spaces b4<br /> 5spaces b4, line: 4").text();
$("#aaa").html(htmlCode);
使用.html()
而不是.text()
。使用替代
.html()
.text()
嘗試:
$('#divname').html("code");
但使用html的,我只可以顯示這樣的: 線:1個3spaces B4
行:3個5spaces B4
5spaces B4,行:4 – Tattat 2011-05-01 15:24:44