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>"
}
}
}
});

上一篇下一篇

猜你喜欢

热点阅读