首页javascriptimgjQuery HTML Element - 如何切换图像大小点击

jQuery HTML Element - 如何切换图像大小点击

我们想知道如何切换图像大小点击。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.8.3.js'></script>
<style type='text/css'>
.test {
  height: 600px;
  width: 600px;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
    $("img").click(function() {
        $(this).toggleClass("test");    
    });
});
</script>
</head>
<body>
  <img src="http://www.w3cschool.cn/style/download.png" />
</body>
</html>