美文网首页
通过JQuery给表格内的元素设置css样式

通过JQuery给表格内的元素设置css样式

作者: 李北北 | 来源:发表于2018-05-09 17:35 被阅读0次
    //HTML代码
    <table id="dataGrid" class="table text-nowrap scrolltable"></table>
    
    //设置样式代码
    <script type="text/javascript">
            function setCss(){
                var thead = $("#dataGrid thead");
                thead.css({"display": "block"});
                thead.css({"overflow-y": "scroll"});
            }
    </script>
    

    相关文章

      网友评论

          本文标题:通过JQuery给表格内的元素设置css样式

          本文链接:https://www.haomeiwen.com/subject/pmdorftx.html