I am using the following code.
我正在使用以下代码。
HTML Code :
HTML代码:
<div class="test">×</div>
Javascript:
Javascript:
alert($(".test").html());
I am getting ×
in alert. I need to get ×
as result.
Anybody knows or faces this problem? Please update your suggestions.
我让×警觉。我需要得到和次数作为结果。有人知道这个问题吗?请更新你的建议。
5 个解决方案
#1
30
You need to escape:
你需要逃离:
<div class="test">&times</div>
And then read the value using text() to get the unescaped value:
然后使用text()读取值,获取未转义值:
alert($(".test").text()); // outputs: ×
#2
54
You need to escape the ampersand:
你需要避开&号:
<div class="test">&times</div>
×
means a multiplication sign. (Technically it should be ×
but lenient browsers let you omit the ;
.)
和乘以是一个乘法符号。(技术上应该是&时间;但是宽大的浏览器可以让您省略;)
#3
3
I suspect you did not know that there are different &
escapes in HTML. The W3C you can see the codes. ×
means ×
in HTML code. Use &times
instead.
我怀疑您不知道HTML中有不同的&转义。你可以看到这些代码。报意味着×在HTML代码。使用和时间。
#4
3
×
stands for ×
in html. Use &times
to get ×
报;代表×在html。使用和次数获得和次数
#5
0
Use the ×
code instead of ×
Because JSF don't understand the ×
code.
使用#215代码而不是×,因为JSF不理解×代码。
Use: ×
with ;
用途:& # 215;
This link provides some additional information about the topic.
这个链接提供了有关这个主题的一些附加信息。
#1
30
You need to escape:
你需要逃离:
<div class="test">&times</div>
And then read the value using text() to get the unescaped value:
然后使用text()读取值,获取未转义值:
alert($(".test").text()); // outputs: ×
#2
54
You need to escape the ampersand:
你需要避开&号:
<div class="test">&times</div>
×
means a multiplication sign. (Technically it should be ×
but lenient browsers let you omit the ;
.)
和乘以是一个乘法符号。(技术上应该是&时间;但是宽大的浏览器可以让您省略;)
#3
3
I suspect you did not know that there are different &
escapes in HTML. The W3C you can see the codes. ×
means ×
in HTML code. Use &times
instead.
我怀疑您不知道HTML中有不同的&转义。你可以看到这些代码。报意味着×在HTML代码。使用和时间。
#4
3
×
stands for ×
in html. Use &times
to get ×
报;代表×在html。使用和次数获得和次数
#5
0
Use the ×
code instead of ×
Because JSF don't understand the ×
code.
使用#215代码而不是×,因为JSF不理解×代码。
Use: ×
with ;
用途:& # 215;
This link provides some additional information about the topic.
这个链接提供了有关这个主题的一些附加信息。