jQuery tooltip 提示信息换行

$( document ).tooltip({
content: function () {
// 根据 $(this) 决定提示的内容
if ($(this).is("input")) {
// 提示纯HTML,可以自定义样式、内容等等
if ($(this).attr("title") == ""){
return "";
}else{
return "

"+$(this).attr("title")+"
"
}
}
}
});

你可能感兴趣的:(jQuery tooltip 提示信息换行)