// 遍歷jqgrid 使其序號列寬度為45 function setwidth() { $("table[role='grid']").each(function () {//jqgrid 創建的表格都有role屬性為grid $('.' + $(this).attr("class") + ' tr:first th:first').css("width", "45"); //使表頭的序號列寬度為40 $('.' + $(this).attr("class") + ' tr:first td:first').css("width", "45"); // 使表體的序號列寬度為40 }); }
