2010-09-13 73 views
0

我堅持解析aphostrophe奇怪的問題。我不能在「測試」選擇器中使用轉義字符,因爲這個值來自數據庫。我如何正確顯示這個.. :-(解決撇號問題在jquery.html()

腳本如下

$(document).ready(function() { 
var getVal = $('.test').text(); 
$('.newstest').html(getVal); 
}); 

HTML代碼如下

<div class="test">&amp;apos;&amp;quot;</div><br /><br /> 
<div class="newstest"></div> 

感謝

回答

0

試試這個:

if($('.text').text().contains("\'")) 
{ 
//Do something here. Either replace the apostrophe with another character or display a 
//default value. 
} 
else 
{ 
var getVal = $('.test').text(); 
$('.newstest').html(getVal); 
}