做一个手机网页,查看消息列表,列表用的是table,要求用户点击消息字体变灰
给tr添加click事件,然后设置颜色,如果你要持久化还需要和数据库打交道,保存状态到数据库中
<table>
<tr onclick="this.style.color='#666'"><td>信息1</td></tr>
<tr onclick="this.style.color='#666'"><td>信息2</td></tr>
<tr onclick="this.style.color='#666'"><td>信息3</td></tr>
</table>
信息1 |
信息2 |
信息3 |