zoukankan
html css js c++ java
Jqtestdiv
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Document</title> </script> <style type="text/css"> .a{200px;height:300px;border:1px solid #999;overflow:hidden;} .b{80%;height:80px;margin:10px auto;padding:10px;border:1px solid #ccc;background:#eee;cursor:pointer;} </style> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script> $(function(){ $('.b').click(function(){ $(this).hide(); }); }); </script> </head> <body> <div class="a"> <div class="b">单击关闭111</div> <div class="b">单击关闭22</div> <div class="b">单击关闭333</div> <div class="b">单击关闭444</div> <div class="b">单击关闭555</div> </div> </body> </html>
运行代码
查看全文
相关阅读:
修改MFC标题栏上的图标
【转】子窗口刷新父窗口的问题
水晶报表添加引用
【转】MetadataType的使用,MVC的Model层数据验证
poj 1556 The Doors 线段相交判断+最短路
poj 1269 Intersecting Lines 求直线交点 判断直线平行共线
string 函数操作
poj 1066 Treasure Hunt 线段相交判断
poj 1410 Intersection 线段相交判断
poj 3347 Kadj Squares 扩大数据化整数
原文地址:https://www.cnblogs.com/jikey/p/1763522.html
最新文章
在IE7 中遇到的几个小问题,有解决方案
缤纷企业网站管理系统[开源]
.net 软件注册功能的简单实现
setTimeout的失效问题,无论时间设成多大,都是直接跳转
关于本程序无法运行的解决方法
SQL/NOSQL的选择问题
backup tools used in datacenter replication
Note after reading "googlewide profiling: a continuous profiling infrastructure for data cente"
几种内存分配分配策略比较
List of resources on distributed systems (ref from High Scalability)
热门文章
从Google C++ Coding Style里面抽出一些贴近现实的rule
Linux 内存的延迟分配
glibc内存泄露以及TCmalloc 简单分析
寻找缺失的那个数
【转】在C#中使用SendMessage
【转】ASP.Net中FileUpLoad控件内容清空
VS2005中文输入法自动转换为全角的解决方法
【转】有关WinCVS的使用
【Office Outlook 2007】邮件发生0x80040600错误
MVC中checkbox的使用
Copyright © 2011-2022 走看看