我想要做的是将特定标题应用于具有特定类的任何元素。
HTML
<span class="br">BR</span>
<span class="dvd">DVD</span>
<span class="br">BR</span>
<span class="br">BR</span>
<span class="sc">Sc</span>
CSS
span{
width: auto;
height: auto;
padding: 5px;
color: white;
}
.br{
background: blue;
}
.dvd{
background: green;
}
.sc{
background: black;
}
如何为“br”类的任何元素设置标题?使用jQuery做得更好吗?
答案 0 :(得分:4)
用jquery做。 CSS是一种表示语言。除了:before
和:after
Jquery的:
$('.br').attr('title','yourtitle');
答案 1 :(得分:1)
$('.br').attr("title","your title attribute goes here");