Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<img src="http://www.w3school.com.cn/i/eg_smile.gif">
<button>1180像素</button>
  //单击一次图片就变大 再单击一次图片又恢复刚才的样子。怎么玩?
  
  <script>
         $("button").click(function(){  //单击一次图片就变大 再单击一次图片又恢复刚才的样子。怎么玩?
        if($("img").attr("width","180")){ 
            $("img").attr("width","280");
        }else{
            $("img").attr("width","180");
        } //我做了个判断  在按钮单击2次反应吗?
     });
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers