有没有办法从html中获取ID
示例:
id="title1"
所以它需要显示在css中的content:部分。
<table class="layout display responsive-table">
<thead>
<tr>
<th class="th" id="title1">Title12</th>
<th class="th">Title2</th>
<th class="th">Title3</th>
<th class="th">Title4</th>
</tr>
</thead>
table.responsive-table td:nth-child(1):before {
content: use id here;
}
table.responsive-table td:nth-child(2):before {
content: 'Title 2';
}
答案 0 :(得分:6)
是使用attr()函数。
table.responsive-table td:nth-child(1):before {
content: attr(id);
}
答案 1 :(得分:0)
是的,您可以通过jquery获取此信息。试试吧
$(document).ready(function(){
$("#title1").text();
})