码迷,mamicode.com
首页 > Web开发 > 详细

jQuery小结5

时间:2015-12-13 23:34:00      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4     <title></title>
 5     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
 6     <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
 7     <style type="text/css">
 8         *{margin:0px;padding:0px;}
 9         body{font-size:12px;}
10         
11         .box{margin:10px;padding:10px;}
12         .box h3{margin:10px 0px;border-bottom:1px solid red;padding-bottom:10px;}
13         .box p{line-height:20px;}
14         
15         #allbox{margin:10px;padding:10px;}
16         #allbox div{border:5px solid #aaccff;margin-top:10px;height:50px;}
17         
18     </style>
19     <script type="text/javascript">
20 
21     $(function(){
22         $("#allbox div").dblclick(function(){
23         
24                 if(confirm("是否要删除?")==true){
25 
26                 $(this).remove();
27             }
28         })
29     })
30     </script>
31 
32 
33 </head>
34 <body>
35     <div class="box">
36         <h3>试题要求</h3>
37         <p>
38             1.双击allbox的每一个子div时,将被双击的div从界面中删除掉<br />
39             2.删除前弹出确认对话框,确定删除后再执行删除操作
40 
41         </p>
42     </div>
43 
44     <div id="allbox">
45         <div >box1</div>
46         <div >box2</div>
47         <div >box3</div>
48         <div >box4</div>
49         <div >box5</div>
50         <div >box6</div>
51     </div>
52 
53 
54 </body>
55 </html>

 

jQuery小结5

标签:

原文地址:http://www.cnblogs.com/mr-guan/p/5043789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!