<!DOCTYPE html>
<html>
<head>
<link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Jquery load event not working</title>
<style>
div {
width: 100px;
height: 100px;
background-color: #ccc;
}
.big {
width: 200px;
height: 200px;
}
.blue {
background-color: #00f;
}
</style>
</head>
<body>
<div class="big"></div>
<script>
$( "div" ).load(function() {
$( this ).switchClass( "big", "blue", 1000, "easeInOutQuad" );
});
</script>
</body>
</html>
JQuery 加载事件无效。您可以检查上面的代码,想要将类从大变为蓝色,背景颜色变为#00f以及div的宽度和高度
答案 0 :(得分:3)
应该是这样的:
$(document).ready(function(){
// $("div") div is ready
});
文档就绪意味着DOM中的所有元素都可以使用。
$(document).ready(function(){
$( 'div' ).switchClass( "big", "blue", 1000, "easeInOutQuad" );
});
&#13;
div {
width: 100px;
height: 100px;
background-color: #ccc;
}
.big {
width: 200px;
height: 200px;
}
.blue {
background-color: #00f;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<div class="big"></div>
&#13;
<强> Working Fiddle 强>
答案 1 :(得分:2)
您需要将该方法与div
元素一起使用,无需使用.load()
$("div").switchClass( "big", "blue", 1000, "easeInOutQuad" );
注意:由于您在元素之后指定了脚本,因此不需要文档就绪处理程序。
div {
width: 100px;
height: 100px;
background-color: #ccc;
}
.big {
width: 200px;
height: 200px;
}
.blue {
background-color: #00f;
}
<link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<div class="big"></div>
<script>
$("div").switchClass("big", "blue", 1000, "easeInOutQuad");
</script>
答案 2 :(得分:1)
只需使用.ready()中的jQuery代码,如下所示:
<script>
$(document).ready(function() {
$( "div" ).click(function() {
$( this ).switchClass( "big", "blue", 1000, "easeInOutQuad" );
});
});
</script>
你也使用.load而不是.click在&#39; div&#39;你想添加动画。