在jquery.html()中解析撇号的问题

时间:2010-09-13 06:41:58

标签: jquery jquery-selectors

我遇到了一个解析aphostrophe的奇怪问题。我不能在“test”选择器中使用转义字符,因为此值来自DB。我如何正确显示..: - (

脚本如下

$(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>

谢谢

1 个答案:

答案 0 :(得分: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); 
}