我想應用jQuery text()方法以轉義包含<或> 這樣的字符的html內容,該內容「預先」添加到div塊,即就是爲什麼我需要<和>進行轉義jQuery如何將text()應用於變量
我無法弄清楚如何在這個例子中這樣做:http://jsfiddle.net/n28uf/2/
<div class="container"></div>
jQuery(function(){
var content = '<hello world>';
jQuery('.container').prepend(content);
// Where should I apply the .text() method?
});
我嘗試這樣做:
jQuery('.container').prepend(jQuery.text(content));
但我收到此錯誤信息:
Uncaught RangeError: Maximum call stack size exceeded
http://jsfiddle.net/n28uf/2/的我應該穿什麼改變的代碼有它正常工作的任何想法?
感謝