添加css:
.tableoverflow {
table-layout: fixed;
}
.tableoverflow tr td {
text-overflow: ellipsis; /* for IE */
-moz-text-overflow: ellipsis; /* for Firefox,mozilla */
overflow: hidden;
white-space: nowrap;
}
table:
<table id="listViewTable" width="965px" border="0" cellpadding="0" cellspacing="0" style="word-break:break-all;margin-top: 5px" class="tableoverflow">
在360浏览器时注意在table中width="965px"设置宽度一定要有,不能等加载时再重新设置!