js实用的小小小技巧 一:快速取得当前form里的input值
js这么写:八:改变table里的鼠标划过的颜色<tr onmouseover='this.style.color="#e7fbff"' onmouseout='this.style.color="#FFFFFF"' >……</tr>最好是把和样式设置相关的都放进css里,以后改了方便。
八:改变table里的鼠标划过的颜色<tr onmouseover='this.style.color="#e7fbff"' onmouseout='this.style.color="#FFFFFF"' >……</tr>最好是把和样式设置相关的都放进css里,以后改了方便。
<tr onmouseover='this.style.color="#e7fbff"' onmouseout='this.style.color="#FFFFFF"' >……</tr>