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();
      })
    })
  • 相关阅读:
    List<T> 添加 DataTable
    sql 在not in 子查询有null值情况下经常出现的陷阱
    SQL查询~ 存在一个表而不在另一个表中的数据
    SQL Server xtype
    jQurey 获取当前时间
    sp_rename
    Longest Substring Without Repeating Characters
    Fraction to Recurring Decimal
    链表翻转系列
    蓄水池抽样
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13348776.html
Copyright © 2011-2022 走看看