gpt4 book ai didi

Jquery 切换类功能不起作用

转载 作者:行者123 更新时间:2023-12-01 01:17:04 24 4
gpt4 key购买 nike

大家好,我想在事件处理程序上更改我的 div 类,例如鼠标悬停或单击()。但是我面临的问题是它不会改变切换类的效果。这是代码,请帮助我谢谢。

 <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Untitled Document</title>

<style type="text/css">


.hello{

background:#60C;


}
.main{
width:300px;
height:300px;
background:#00F;
border-radius:10px;
}
</style>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" >


$(function() {
$("#event").bind("mouseover mouseleave", highlight);

$("#event").bind("click", function(evt) {
$("#event").toggleClass("hello");
$("#event").unbind("mouseover mouseleave", highlight);
$("#event").html("<p>You shut off the hover effect!</p>");
});
});

function highlight(evt) {
$("#event").toggleClass("high");
}


</script>
</head>

    <div class="main" id="event">
This is a div click to highlight
</div>

最佳答案

您的代码适用于悬停状态,但您的 CSS 中没有 high 类。

.high {
property: value
}

要绑定(bind)/取消绑定(bind)事件,您可以使用 onoff 方法:

$(function() {
$("#event").on("mouseover mouseleave", highlight);

$("#event").on("click", function(evt) {
$(this).toggleClass("hello");
$(this).off("mouseover mouseleave", highlight);
$(this).html("<p>You shut off the hover effect!</p>");
});
});

function highlight(evt) {
$("#event").toggleClass("high");
}

http://jsfiddle.net/t3B5Z/

关于Jquery 切换类功能不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12329334/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com