zoukankan      html  css  js  c++  java
  • jquery bind事件

    node2:/var/www/html/jquery#cat t40.html
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <style>
            #panel{
                 400px;height: 100%;border: 1px solid #ddd;margin: 0;padding: 0px;margin-left: 200px;margin-top: 20px;
            }
            .head{
                background: #aaa;padding: 10px;margin: 0;color: #000;
            }
            .content{
                padding: 10px;text-align: left;text-indent: 2em;display: none;
            }
        </style>
        
    </head>
    <body>
        <div id="panel">
            <h5 class="head">什么是jQuery?</h5>
            <div class="content">
                我是小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本,小文本
            </div>
        </div>
    <script type="text/javascript" src="jquery-1.2.3.min.js"></script>    
    <script type="text/javascript" src="t40.js"></script>
    node2:/var/www/html/jquery#
    node2:/var/www/html/jquery#cat t40.js
    $(function(){
      $("#panel h5.head").bind("click",function(){
        $(this).next("div.content").show();
      })
    })
  • 相关阅读:
    Java面试知识点总结
    Log4j常用配置及使用
    Eclipse+tomcat+axis2进行web service部署
    iframe内点击a标签禁止滚动到顶部
    VScode首选项
    Bookmarks
    VScode常用插件
    slideout
    bs-loading
    iPhone X 上删除白条
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13348776.html
Copyright © 2011-2022 走看看