0

所以我有这个代码

if ($(this).is(".item")) {
    $("#hoverdiv").text("This div has the Item class<br>Test").show();
}

而且我发现了使用 .text 不会使 HTML 代码解析的困难方法。有什么解决办法吗?

4

2 回答 2

2

使用html而不是text

if ($(this).is(".item")){
    $("#hoverdiv").html("This div has the Item class<br>Test").show();
}
于 2012-07-02T16:58:01.417 回答
2

当你添加tags你应该使用html()而不是text()

设置匹配元素集中每个元素的 HTML 内容。

if ($(this).is(".item")){
      $("#hoverdiv").html("This div has the Item class<br>Test").show();
}
于 2012-07-02T16:58:24.287 回答