.selected {
background-image:url('蓝色背景图文件')
color: #FFFFFF
}
.other {
background-image:url('白色背景图文件')
color: #000000
}
当前项应用selected样式,其它项应用other样式,就行了.
新建调用模版:text.<table border="0" width="100%" cellpadding="0" cellspacing="0">{$}<tr>{$$}
<td height="20">{$content}<td>{$$}
</tr>{$}
</table>
前台调用:{$=itransfer('top', 'jianjietxt','topx=1tnum=10genre=aboutusosql=and abid=1')}
方法很多,通常使用css就可以做到, 假设你的关于我们的HTML的ID是#aboutus下面的内容是.aboutuschild
那么类似这样:
#aboutus .aboutuschild {
display: none
}
#aboutus:hover .aboutuschild {
display:block
}