请看下面的代码:
在第一个链接中有一个包含 html 特殊字符的标题属性,<
后跟“!” (实际上跟在哪个字符后面并不重要)。当我们使用 jQuery 的 attr() 函数获取该标题属性的值时,html 被破坏(您可以看到,只要以下文本也丢失,就没有打印“<”字符。
在第二个链接中,唯一的区别是我在之后添加了一个空格<
,现在它可以按预期工作。
您认为这是 jQuery 中的错误还是我只是不明白?
PS。如果您认为我在做一些奇怪的事情 - 这只是一些工具提示插件中的一段代码。
HTML:
<a href="#" title="<div style='color:red'>This is the less than sign: <! Now you know it?</div>">This is a link</a><br>
<a href="#" title="<div style='color:red'>This is the less than sign: < ! Now you know it?</div>">This is a link</a><br>
jQuery:
$('a').each(function() {
$('body').append($(this).attr('title')); });
// just to exclude that it's append() function's fault :)
$('body').append("<div style='color:red'>This is the less than sign: <! Now you know it?</div>");