JQuery 加载事件不工作

JQuery load event not working

<!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 load 事件无效。您可以检查上面的代码,想要将 class 从大更改为蓝色,背景颜色更改为 #00f 以及 div

的宽度和高度

应该是这样的:

$(document).ready(function(){

 // $("div") div is ready

});

当文档就绪时意味着 DOM 中的所有元素都已准备好使用。

勾选link for more info.

$(document).ready(function(){
  $( 'div' ).switchClass( "big", "blue", 1000, "easeInOutQuad" );
});
div {
    width: 100px;
    height: 100px;
    background-color: #ccc;
  }
  .big {
    width: 200px;
    height: 200px;
  }
  .blue {
    background-color: #00f;
  }
<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>

Working Fiddle

需要使用带有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>

只需使用 .ready() 中的 jQuery 代码,如下所示:

<script>
$(document).ready(function() {
    $( "div" ).click(function() {
        $( this ).switchClass( "big", "blue", 1000, "easeInOutQuad" );
    });
});
</script>

您还使用了 .load 而不是 .click 在您想要添加动画的 'div' 上。