1、td里自动换行(免得撑爆)
style="word-break:break-all"
style="word-wrap:break-word"
2、为td添加事件
var obj=datatable.rows[i].cells[7];
obj.onmouseover=function(){this.bgColor='#FFE3D2';}
obj.onmouseout=function(){this.bgColor='';};
3、为tr加样式
datatable.rows[i].style.backgroundColor="lightyellow";
4、去空格
errcde=errcde.replace(/(^/s*)|(/s*$)/g,"");
或添加一方法:String.prototype.trim=function(){ return this.replace(/(^/s*)|(/s*$)/g,""); }
本文介绍了如何在HTML表格中实现自动换行、添加鼠标悬停效果、设置行背景颜色及字符串去空格等实用技巧。

被折叠的 条评论
为什么被折叠?



