javascript – 在数据属性JSON对象中转义引号和html

使用HTML5数据属性,可以将HTML存储在HTML中,如下面的HTML所示.这适用于字符串键:值对,但我无法弄清楚如何使值包括特殊字符或HTML.

给出问题的JSON对象的一部分是:不能对< b> own< / b>进行投票.评论(也对像这样的更复杂的HTML块感兴趣:< span style =“text-decoration:underline”own< / span>.这是一个JSFiddle for the code below.

JS:

$('button').on('click', function () {
  var $this=$(this), data=$this.data('data');
     $('#output').html(data.message);
});

HTML:

<button type='button' data-data='{"type": "voting", "message": "Can't vote on <span style="text-decoration:underline" own</span> review"}'></button>
<div id='output'></div>

解决方法:

你需要escape the HTML,特别是在这个例子中,&和用于引用属性值的字符(“或”):

<button type='button' data-data='{"type": "voting", "message": "Can&#39;t vote on <b>own</b> review"}'></button>

要么:

<button type='button' data-data='{"type": "voting", "message": "Can&#39;t vote on <span style=&#39;text-decoration:underline&#39;>own</span> review"}'></button>
上一篇:密码包含&符号时,php ldap_bind失败


下一篇:php – 我该如何解决这个错误?不推荐使用:mysql_escape_string():不推荐使用此函数;使用mysql_real_escape_string()代替