使用jquery可以在表中自动将类更改为id。
作为此引导类的示例
<table class="table table-striped table-bordered">
到css id
<table id="mytable">
我想将id用于我的打印页面
答案 0 :(得分:1)
您只需使用类选择器选择该元素,然后添加id
属性,如:
$('.table.table-striped.table-bordered').attr('id','mytable');
但如果您还想删除这些类,
$('.table.table-striped.table-bordered').attr('id','mytable').removeAttr('class');
removeAttr('class')
将从class
属性中移除所有类,并使该元素看起来像<table id="mytable">
<table class="table table-striped table-bordered">
答案 1 :(得分:1)
您可以使用:
<table class="table table-striped table-bordered mytable"></table>
$("table.mytable").removeClass("mytable").attr("id","mytable");
或
<table class="table table-striped table-bordered"></table>
$("table.table").attr("id","mytable");
第一种方法&#34;转换&#34; class
到id
。
第二个只是在选定的表中添加一个Id。