在onmouseover属性内使用document.bgCo"/>

HTML如何使用onmouseover属性更改背景颜色?

HTML如何使用onmouseover属性更改背景颜色?下面本篇文章就来给大家介绍一下在HTML中使用onmouseover属性更改背景颜色的方法,希望对大家有所帮助。

HTML的onmouseover属性在鼠标指针移动到元素上时触发。

语法:

<element onmouseover="script">

在onmouseover属性内使用document.bgColor来设置背景颜色。

bgColor可获取/设置当前文档的背景颜色

语法:

document.bgColor ='nameOfColor'

示例:当鼠标移动到特定颜色上时,将改变背景的颜色。

<!DOCTYPE html> 
<html> 
    <head> 
    	<meta charset="UTF-8">
    </head> 
    <body> 
        <center> 
		    <!-- when mouse is move over the colour name, colour change -->
		    <a onmouseover="document.bgColor='greem'">Green</a><br> 
		    <a onmouseover="document.bgColor='red'">Red</a><br> 
		    <a onmouseover="document.bgColor='magenta'">Magenta</a><br> 
		    <a onmouseover="document.bgColor='purple'">Purple</a><br> 
		    <a onmouseover="document.bgColor='blue'">Blue</a><br> 
		    <a onmouseover="document.bgColor='yellow'">Yellow</a><br> 
		    <a onmouseover="document.bgColor='black'">Black</a><br> 
		    <a onmouseover="document.bgColor='orange'">Orange</a><br> 
		</center> 
    </body>     
</html>

效果图:

以上就是HTML如何使用onmouseover属性更改背景颜色?的详细内容,更多请关注易知道|edz.cc其它相关文章!

推荐阅读