妙味——JS学前预热02
(1)代码效果:
实现鼠标移入移出经过div色块时更换class。
(2)实现代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Document</title> <style> div{width: 100px;height: 100px;background-color: red;} .box{width: 200px;height: 200px;background-color: green;} </style> </head> <body> <!-- 在JS中class要用className --> <div id="div" onmouseover="getElementById('div').className='box';" onmouseout="getElementById('div').className='';"></div> </body> </html>
(3)结果如下图所示:
(4)学习要点:
在JS中class要用className
高否?富否?帅否?
否?
滚去学习!