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

发布于 2024-09-18 16:02:39 字数 386 浏览 3 评论 0原文

我遇到了解析撇号的奇怪问题。我无法在“test”选择器中使用转义字符,因为该值来自数据库。我如何正确显示这个..:-(

脚本如下

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

谢谢

I am stuck with a weird problem of parsing an aphostrophe. I cant use an escape character in "test" selector because this value is coming from the DB. How do i display this correctly.. :-(

Script is as follows

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

Html Code is as follows

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

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何处潇湘 2024-09-25 16:02:39

试试这个:

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); 
}

Try this:

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); 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文