欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JQuery对class属性的操作实现按钮开关效果

程序员文章站 2022-04-24 18:33:49
在本文中用jquery对class属性的操作方法实现页面中的按钮开关效果。 首先定义两个class: . 代码如下: .controloff{ display:inline-block; wid...

在本文中用jquery对class属性的操作方法实现页面中的按钮开关效果。

首先定义两个class:

. 代码如下:


.controloff{
display:inline-block;
width:130px;
height:36px;
cursor:pointer;
background-image:url("../iclass/images/teach_off.png");
background-repeat: no-repeat;
}

.controlon{
display:inline-block;
width:130px;
height:36px;
cursor:pointer;
background-image:url("../iclass/images/teach_on.png");
background-repeat: no-repeat;
}


再定义一个超链接标签:

. 代码如下:


<a href='javascript:void(0)' id='teachcontrol' class='controloff'></a>


接着写js脚本完成切换效果:

. 代码如下:


function switchteachcontrol(){
var target = $("#teachcontrol");
if(target.hasclass("controloff")){
target.removeclass("controloff");
target.addclass("controlon");

}else{
target.removeclass("controlon");
target.addclass("controloff");

}
}