jQuery tooltip 提示信息换行
2017-06-14 本文已影响0人
ywy_java
$( document ).tooltip({
content: function () {
// 根据 $(this) 决定提示的内容
if ($(this).is("input")) {
// 提示纯HTML,可以自定义样式、内容等等
if ($(this).attr("title") == ""){
return "";
}else{
return "<div style='text-align: left;'>"+$(this).attr("title")+"</div>"
}
}
}
});