鼠标指向TD内的文字加粗
发布网友
发布时间:2022-04-20 22:36
我来回答
共1个回答
热心网友
时间:2022-04-21 00:06
用js:
<td onmouseover="this.style.fontWeight='bold'" onmouseout="this.style.fontWeight='normal'">test</td>
用css:
样式:
TD:HOVER{
font-weight: bold;
}
html:
<table>
<tr>
<td>test</td>
</tr>
</table>追问因为指向后还有其他内容,所以需要写成JS function 的形式,按照我的那种形式写,在function 内部应如何表达?
追答function TDOver(t){
t.style.fontWeight='bold';
}
function TDOut(t){
t.style.fontWeight='normal';
}
test