解决日志title省略问题

This commit is contained in:
zhanghongqing
2018-11-05 10:36:58 +08:00
parent 051d16bfc9
commit e1a257a6df

View File

@@ -1,6 +1,6 @@
$(document).ready(function() {
// 界面鼠标悬停事件
$("table.logTb").find("td").not(":has(a)").bind("mouseover", function(){
/* $("table.logTb").find("td").not(":has(a)").bind("mouseover", function(){
var str = $(this).html(this.innerHTML.trim()).text();
//解决火狐title不能自动换行
var count = Math.floor(str.length/64);
@@ -9,7 +9,7 @@ $(document).ready(function() {
}
this.title=str;
});
var fontSize = 0;
var fontSize = 0;*/
/* $("table.logTb th").each(function(j){
// 判断是否支持currentStyle属性 是IE 否FF or Chrome
var finalStyle = this.currentStyle ? this.currentStyle : document.defaultView.getComputedStyle(this , null);