所以我有这个代码
if ($(this).is(".item")) {
$("#hoverdiv").text("This div has the Item class<br>Test").show();
}
而且我发现了使用 .text 不会使 HTML 代码解析的困难方法。有什么解决办法吗?
使用html而不是text
:
if ($(this).is(".item")){
$("#hoverdiv").html("This div has the Item class<br>Test").show();
}
当你添加tags
你应该使用html()
而不是text()
:
设置匹配元素集中每个元素的 HTML 内容。
if ($(this).is(".item")){
$("#hoverdiv").html("This div has the Item class<br>Test").show();
}