我有一个简单的jQuery工具提示脚本:
它在以下行的链接中提取标题标记:
var title = jQuery(this).attr('title');
然后将其插入工具提示中:
.text(title)
是否可以像h2一样将html添加到title
变量中:
.text("<h2>" + title + "</h2>")
谢谢任何帮助将不胜感激,因为我是jQuery的新手:)
答案 0 :(得分:1)
您可以使用.html()代替使用.text(),然后您可以在描述时设置HTML。
.html('<h2>' + title + '</h2>);
答案 1 :(得分:0)
如果我理解你的错误,只需改变:
jQuery('<p class="ttip"></p>')
到
jQuery('<h2 class="ttip"></h2>')
在你的javascript中。