在 Javascript 中使用 HTML 转义字符

发布于 2024-10-30 22:47:48 字数 122 浏览 0 评论 0原文

我正在使用 jQuery 来更改按钮的值。该按钮包含箭头引号(« 和 »)。当我在 javascript 文件中键入它们时,它显示字符代码,而不是字符本身。

如何让这些箭头引号在 javascript 中正确显示?

I am using jQuery to change the value of a button. The button contains arrow quotes (« and »). When I type the them in the javascript file it shows the character codes, not the characters themselves.

How do I get these arrow quotes to display properly within javascript?

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

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

发布评论

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

评论(2

只是我以为 2024-11-06 22:47:48
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head><title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript"><!--
jQuery(function($){
    $("input:button").val("«Done» and <Done>");
});
//--></script>
</head>
<body>

<p><input type="button" value="Please wait..."></p>

</body>
</html>

(如果我想显示他们的代码,我就必须考虑如何去做。)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head><title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript"><!--
jQuery(function($){
    $("input:button").val("«Done» and <Done>");
});
//--></script>
</head>
<body>

<p><input type="button" value="Please wait..."></p>

</body>
</html>

(If I wanted to display their codes, I'd have to think on how to do it.)

辞取 2024-11-06 22:47:48

你怎么设置呢?这对我有用

<button id="test"></button>

$('#test').html('«');

How are you setting it? This works for me

<button id="test"></button>

$('#test').html('«');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文