我遇到了一个解析aphostrophe的奇怪问题。我不能在“test”选择器中使用转义字符,因为此值来自DB。我如何正确显示..: - (
脚本如下
$(document).ready(function() {
var getVal = $('.test').text();
$('.newstest').html(getVal);
});
Html代码如下
<div class="test">&apos;&quot;</div><br /><br />
<div class="newstest"></div>
谢谢
答案 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);
}