|
|
@@ -41,11 +41,6 @@ function getlistenList(count, page, keyword) {
|
|
|
for (var i = 0; i < listenList.length; i++) {
|
|
|
var trow = getDataRow(listenList[i], i); //定义一个方法,返回tr数据
|
|
|
tbody.appendChild(trow);
|
|
|
- // (function(i) {
|
|
|
- // $("#name_detal" + listenList[i].id ).click(function () {
|
|
|
- // getDetail(logList[i].detail, logList[i].enName);
|
|
|
- // });
|
|
|
- // })(i);
|
|
|
}
|
|
|
|
|
|
// 点击搜索
|
|
|
@@ -86,10 +81,6 @@ function getlistenList(count, page, keyword) {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-$('#outer').mouseenter(function() {
|
|
|
- $('#log').append('<div>Handler for .mouseenter() called.</div>');
|
|
|
-});
|
|
|
-
|
|
|
/**
|
|
|
* 建立表格数据
|
|
|
*
|
|
|
@@ -132,7 +123,7 @@ function getDataRow(listen, i) {
|
|
|
row.appendChild(dateCell);
|
|
|
|
|
|
var statusCell = document.createElement('td'); //状态
|
|
|
- statusCell.setAttribute("class", "text-center");
|
|
|
+ statusCell.setAttribute("class", "text-center fonts-color");
|
|
|
statusCell.setAttribute("data-toggle", "tooltip");
|
|
|
statusCell.setAttribute("data-placement", "right");
|
|
|
statusCell.setAttribute("title", listen.description);
|