1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144 |
<!DOCTYPE html> <head> <meta http-equiv= "Content-Type"
content= "text/html; charset=utf-8" /> <title>删除记录时的提示效果</title> <script src= "jquery-2.1.0.js" ></script> <style type= "text/css" > body { font-size:13px; } .divShow { line-height:32px; height:32px; background-color: #eee; width:280px; padding-left:10px; } .divShow span { padding-left:50px; } .dialog { width:360px; border:5px solid
#666; position:absolute; display:none; z-index:101; } .dialog .title { background-color: #fbaf15; padding:10px; color: #fff; font-weight:bold; } .dialog .title img { float:right; } .dialog .content { background-color: #fff; padding:25px; height:60px; } .dialog .content img { float:left; } .dialog .content span { float:left; padding-top:10px; padding-left:10px; } .dialog .bottom { text-align:right; padding:10px 10px 10px 0px; background-color: #eee; } .mark { width: 100%; height: 100%; background-color:
#000; position: absolute; top: 0px; left: 0px; filter:alpha(opacity=30); display:none; z-index:100; } .btn { border:1px solid
#666; padding:2px; width:65px; filter: progid:DxImageTransForm.Microsoft.Oradient(GradientType=0,StartColorStr= #fffff,EndColorStr=#ECE9D8); } </style> <script type= "text/javascript" > $( function
() { $( "#Button1" ).click( function
() { $( ".mark" ).show(); showDialog(); $( ".dialog" ).show(); }) function
showDialog() { var
objW = $(window); var
objC = $( ".dialog" ); var
brsW = objW.width(); var
brsH = objW.height(); var
sclL = objW.scrollLeft(); var
sclT = objW.scrollTop(); var
curW = objC.width(); var
curH = objC.height(); var
left = sclL + (brsW - curW) / 2; var
top = sclT + (brsH - curH) / 2; objC.css({ "left" : left, "top" : top }); } $(window).resize( function
() { if
(!$( ".dialog" ).is( ":visible" )) { return ; } showDialog(); }) $( ".title img" ).click( function
() { $( ".dialog" ).hide(); $( ".mark" ).hide(); }) $( "#Button3" ).click( function
() { $( ".dialog" ).hide(); $( ".mark" ).hide(); }) $( "#Button2" ).click( function
() { $( ".dialog" ).hide(); $( ".mark" ).hide(); if
($( "input:checked" ).length != 0) { $( ".divShow" ).remove(); } }) }) </script> </head> <body> <div class = "divShow" > <input id= "Checkbox1"
type= "checkbox"
/> <a href= "#" >这是一条可以删除的记录</a> <span> <input id= "Button1"
type= "button"
value= "删除"
class = "btn"
/> </span> </div> <div class = "mark" ></div> <div class = "dialog" > <div class = "title" > <img src= "19.jpg"
alt= "点击可以关闭"
/>删除时提示 </div> <div class = "content" > <img src= "15.jpg"
alt= ""
/> <span>你真的要删除这条记录</span> </div> <div class = "bottom" > <input id= "Button2"
type= "button"
value= "确定"
class = "btn"
/> <input id= "Button3"
type= "button"
value= "取消"
class = "btn"
/> </div> </div> </body> </html> |
仅是一个简单的效果
原文:http://www.cnblogs.com/qianlovebeijixiong/p/3634940.html