HTML问题 鼠标经过按钮 改变按钮背景色与字体颜色
<inputtype="button"name="SubmitS"value="查看更多"class="adminbutton"onMouseOut="this.styl...
<input type="button" name="SubmitS" value=" 查看更多 " class="adminbutton" onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#b79855' " style="height:30px;padding-top:1px; width: 150" >
其中onMouseOver="this.style.backgroundColor='#b79855' " 只是改变了经过的背景色.如果想同时改变字体颜色应该怎么写? 展开
其中onMouseOver="this.style.backgroundColor='#b79855' " 只是改变了经过的背景色.如果想同时改变字体颜色应该怎么写? 展开
2016-11-22
展开全部
试试:
onMouseOver = function(){
this.style.backgroundColor = '#b79855';
this.style.color = 'red';
}
追问
意思是onMouseOver=""不能直接改两个属性? 一定需要另写一个function?
追答
可以直接两个一起写,用分号隔开。如:
onMouseOver="this.style.backgroundColor='#b79855'; this.style.color = 'red';"
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询