码迷,mamicode.com
首页 > 其他好文 > 详细

Jqgrid 序号列宽度调整

时间:2018-04-28 14:23:34      阅读:1246      评论:0      收藏:0      [点我收藏+]

标签:set   pre   style   first   color   his   grid   setw   nbsp   

    // 遍历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
        });
    }

 

Jqgrid 序号列宽度调整

标签:set   pre   style   first   color   his   grid   setw   nbsp   

原文地址:https://www.cnblogs.com/dongh/p/8966524.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!