运行代码 缩小
喵记
HTML代码
复制 格式化 注释 注释 清空
放大
AخA
 
1
<!DOCTYPE html>
2
<html>
3
    <head>
4
        <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
5
        <script type="text/javascript" src="//apps.bdimg.com/libs/jquery/1.11.3/jquery.min.js"></script>
6
    </head>
7
    <body>
8
        <p><span id = "s1">我是文字</span></p>
9
        <input type ="button" id = "btn1" value = "变大" />
10
        <input type ="button" id = "btn2" value = "变小" />
11
        <input type ="button" id = "btn3" value = "变正常" />
12
        <input type ="button" id = "btn4" value = "删掉变小事件" />
13
        <p><input type = "text" id="txt" /></p>
14
        <input type="button" id="btn5" value="触发文本框的事件" />
15
    </body>
16
</html>
CSS代码
复制 格式化 注释 注释 颜色 清空
放大
x
 
1
body {
2
    background-image: url(/themes/zhan/styles/images/bg-body.jpg);
3
}
4
.main {
5
    width: 80%;
6
    margin: auto;
7
    text-align: center;
8
    border: 1px solid #e0e0e0;
9
    box-shadow: 0 0 2px #ddd;
10
    word-wrap: break-word;
11
    padding: 10px;
12
    border-radius: 3px
13
}
14
.da{
15
font-size:2em;
16
}
17
.xiao{
18
font-size:0.5em;
19
}
20
.zc{
21
font-size:1em;
22
}
23
24
25
26
JS代码
复制 格式化 注释 注释 清空
放大
xxxxxxxxxx
29
 
1
$(document).ready(function(){
2
    $("#btn1").on("click",function(){
3
        $("#s1").removeClass("xiao").removeClass("zc").addClass("da");
4
    });
5
  $("#btn2").on("click",function(){
6
    $("#s1").removeClass("da").removeClass("zc").addClass("xiao");
7
  });
8
  $("#btn3").on("click",function(){
9
    $("#s1").removeClass("da").removeClass("xiao").addClass("zc");
10
  });
11
  $("#btn4").on("click",function(){
12
    $("#btn2").off("click");
13
  });
14
  
15
  $("#txt").focus(function(){
16
    if($("#txt + lable").length>0){
17
      $("lable").replaceWith("<lable>请输入内容哦</lable>");
18
    }else{
19
      $("#txt").after("<lable>请输入内容</lable>");
20
    }
21
  });
22
  $("#btn5").on("click",function(){
23
    $("#txt").trigger("focus");
24
  });
25
});
26
27
28
29
名称
9.7,9.8事件
分类
jQuery实例
描述
bind,on,off,one事件(bind事件和on的区别是bind只能被触发一次)
收藏