fancydemo.html
2.48 KB
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
<!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>账户中心-用户信息</title>
<script type="text/javascript" src="http://static.nong12.com/static/newStatic/common/js/base/jquery.js"></script>
<script type="text/javascript" src="http://static.nong12.com/static/newStatic/common/js/base/sea.js"></script>
<script type="text/javascript" src="http://static.nong12.com/static/newStatic/pnr/js/javascript/common/config.js"></script>
<link rel="stylesheet" type="text/css" href="../css/fancy.css">
</head>
<body>
<a href="#fancyalter" class="act-fancy">弹框触发按钮</a>
<div class="fancyalter" id="fancyalter">
<h2 class="alterhd">添加排序商品</h2>
<div class="alterbd">
<div class="fancysearch">
<span>
商品编号:
<input type="text" class="ipt"/>
</span>
<span>
商品标题:
<input type="text" class="ipt"/>
</span>
<span>
<a href="#" class="searchlink">搜索</a>
</span>
</div>
<table cellpadding="0" cellspacing="0" class="fancytab">
<thead>
<tr>
<td>商品编号</td>
<td>商品标题</td>
<td>单价</td>
<td>卖家</td>
<td>操作</td>
</tr>
</thead>
<tbody>
<tr>
<td>901280912830-192-30910-</td>
<td><a href="#" class="goodtitle">商品标题有可能比较长</a></td>
<td>12301.00元</td>
<td>卖家名称</td>
<td><a href="#" class="goodlink">添加</a></td>
</tr>
<tr>
<td>901280912830-192-30910-</td>
<td><a href="#" class="goodtitle">商品标题有可能比较长</a></td>
<td>12301.00元</td>
<td>卖家名称</td>
<td><a href="#" class="goodlink disabledthis">添加</a></td>
</tr>
</tbody>
</table>
<div class="paging">
<a href="#">首页</a>
<a href="#">1</a>
<span>2</span>
<a href="#">3</a>
<a href="#">尾 页</a>
</div>
<div class="completethis">
<a href="#" class="addsucc">添加已完成</a>
</div>
</div>
</div>
<script type="text/javascript" charset="utf-8">
seajs.use(['fancybox'], function(fancybox){
$(".act-fancy").fancybox({
scrolling: 'visible'
});
});
</script>
</body>
</html>