`

onmouseover="this.className='bb'这样也可以

阅读更多
<html>
	<head>
		<style type="text/css">
			.aa {
				border:1px solid gray;
			}
			.bb {
				border:2px solid blue;
			}
		</style>
		<script type="text/javascript">
			
		</script>
	</head>
  <body>
	<div class="aa" onmouseover="this.className='bb'" onmouseout="this.className='aa'">a</div>
  </body>
</html>

 

分享到:
评论

相关推荐

    网页播放器代码(javascript 播放器 控制)

    &lt;input type="button" onmouseover=this.className="but32"; onmouseout=this.className="but31"; name="pause" title="暂停" onclick="pause();"&gt; &lt;input type="button" onmouseover=this.className="but42"; ...

    163和126的邮箱设计模板

    &lt;LI id=s163 onMouseOver="this.className='over'" onMouseOut="this.className=''"&gt; &lt;A onfocus=this.blur(); onClick="fGoto('CC.goOutlink(\'/163/shoujian/index.jsp.htm\');');CC.changeServiceTab(this....

    非常漂亮的js日历控件

    " onmouseover='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+ " onmouseout='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.Web...

    js子父级菜单上下展开

    this.className+=(this.className.length&gt;0? " ": "") + "sfhover"; } obj[i].onMouseDown=function() { this.className+=(this.className.length&gt;0? " ": "") + "sfhover"; } obj[i].onMouseUp=function() { ...

    滚动代码大全html.pdf

    BEHAVIOR:可以在页面上一旦出现文本时让浏览器按照设定的方法来处理文本,可以设定的值有:SLIDE、ALTERNATE、SCROLL。 BGCOLOR:用于设定字幕的背景颜色,背景颜色可用 RGB、16 进制值的格式或颜色名称来设定。 ...

    jquery仿淘宝的评价插件

    aLi[i - 1].onmouseover = function (){ fnPoint(this.index); //浮动层显示 oP.style.display = "block"; //计算浮动层位置 oP.style.left = oUl.offsetLeft + this.index * this.offsetWidth - ...

    很好用的时间控件,方便简洁

    很好用的时间控件,用起来比较方便,上传至此,分享给大家在JSP中需要加如下:&lt;script language="JavaScript" type="text/javascript...onmouseover="this.className='timeAA'" onmouseout="this.className='timeA'"/&gt;

    网页设计HTML图片滚动代码.docx

    10. **ONMOUSEOUT="this.start()"** 和 **ONMOUSEOVER="this.stop()"**: 这两个事件分别定义当鼠标离开和进入`&lt;marquee&gt;`元素时的行为,即离开时继续滚动,进入时停止滚动。 在实际应用中,由于`&lt;marquee&gt;`标签的非...

    js技巧代码

    1.文本框焦点问题 onBlur:当失去输入焦点后产生该事件 onFocus:当输入获得焦点后,产生该文件 Onchange:当文字值改变时,产生该事件 ...onMouseOver=this.style.color="red" class="button"&gt; ......

    js鼠标经过变色

    对于简单的鼠标悬浮效果,也可以直接使用CSS的`:hover`伪类来实现,无需任何JavaScript代码。 ```css li:hover { color: red; background-color: #f0f0f0; } ``` #### 五、总结 通过以上介绍,我们了解到如何...

    JS网页图片放大镜特效.pdf

    在网页设计中,为了提供更好的用户体验,经常需要实现一些交互特效,比如图片放大镜效果。这种效果可以在用户鼠标悬停在图片上时,...这样的设计不仅增强了用户体验,也展示了JavaScript在网页动态效果中的强大能力。

    解决ie6 select的title不能显示的问题

    this.className = 'smouseOut'; val = selectObj.value; }; newOptDiv.onmouseover = function () { this.className = 'smouseOver'; val = this.name; }; newOptDiv.className = "smouseOut"; newOptDiv....

    gridview 简单代码

    e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'"); e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor"); ...

    GirdView11

    22 e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#3399FF';"); 23 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;"); 24 } 25 } 26 27 28...

    CSS下拉菜单导航多级下拉

    &lt;li class="menu2" onMouseOver="this.className='menu1'" onMouseOut="this.className='menu2'"&gt;账户管理 &lt;div class="list"&gt; &lt;a href="#"&gt;我爱CSS&lt;/a&gt;&lt;br /&gt; &lt;a href="#"&gt;我的首页&lt;/a&gt;&lt;br /&gt; &lt;a href="#"&gt;我...

    asp.net中DataGridView的常用用法

    e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#ffffe7'"); e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=''"); } } ``` #### 七、总结 以上是对`DataGridView`控件在...

    淘宝大图轮播

    warp.onmouseover = cover.onmouseover = clip.onmouseover = function(){ //如果清除的定时器存在,则删除. if(closeTimeId){ clearTimeout(closeTimeId); closeTimeId = null; } if(cover.style.visibility =...

    li:hover的解决方案

    this.className = this.className.replace(new RegExp("hover\\b"), ""); }; } } suckersfish(hover, "li"); ``` 这段脚本通过动态修改元素的类名来模拟`:hover`效果,对于IE6这样的老旧浏览器尤其有用。 ...

    ASP.NET程序中常用的三十三种代码.txt

     Redirect会导致post-back的产生从而丢失了错误信息,所以页面导向应该直接在服务器端执行,这样就可以在错误处理页面得到出错信息并进行相应的处理  10.清空Cookie Cookie.Expires=[DateTime]; Response....

Global site tag (gtag.js) - Google Analytics