编辑模版old.html
5.12 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!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" />
<link href="http://static.yohobuy.com/admin/css/style.css" media="screen" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jquery.min.js"></script>
<link type="text/css" href="http://static.yohobuy.com/admin/js/jqueryui/themes/ui-lightness/jquery-ui-1.8.7.custom.css" rel="stylesheet" />
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jqueryui/ui/jquery-ui-1.8.7.custom.js"></script>
<title>YOHO有货后台管理Right</title>
</head>
<body>
<script type="text/javascript">
//显示与隐藏列表
function showList(id,num){
if(num == 1){
document.getElementById(id).style.display = "block";
}
else{
document.getElementById(id).style.display = "none";
}
}
</script>
<div class="mainbox">
<div class="daohang">当前位置:<a href="#">编辑模版</a></div>
<table width="500" border="0" class="table1" align="center" style="margin:0 auto;">
<tr>
<td style="text-align:center;">
<a href="#" class="a_edit" onmouseover="showList('ksbox1',1);" onmouseout="showList('ksbox1',0);">
<img src="http://static.yohobuy.com/images/p_60_60_1.jpg" />
<div class="a_editbox" id="ksbox1" onmouseover="showList('ksbox1',1);" onmouseout="showList('ksbox1',0);">
<span title="编辑" class="a_i" onclick="opendialog(1);"></span>
</div>
</a>
</td>
<td>
<div>
<a href="#" class="a_edit" onmouseover="showList('ksbox2',1);" onmouseout="showList('ksbox2',0);">
文字标题文字标题文字标题
<div class="a_editbox" id="ksbox2" onmouseover="showList('ksbox2',1);" onmouseout="showList('ksbox2',0);">
<span title="编辑" class="a_i" onclick="opendialog(2);"></span>
</div>
</a>
</div>
<div>
<a href="#">文字标文字标题文字标题文字标文字标题文字标题题</a>
</div>
<div>
<a href="#">文字标题</a>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="a_edit" onmouseover="showList('ksbox3',1);" onmouseout="showList('ksbox3',0);">
文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域字区域文字区域文字区域字区域字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域
<div class="a_editbox" id="ksbox3" onmouseover="showList('ksbox3',1);" onmouseout="showList('ksbox3',0);">
<span title="编辑" class="a_i" onclick="opendialog(3);"></span>
</div>
</div>
</td>
</tr>
</table>
</div>
<script type="text/javascript">
$(function(){
$('#dialog1').dialog({
autoOpen: false,
width:480,
height:200,
modal: true,
resizable: false
});
$('#dialog2').dialog({
autoOpen: false,
width:400,
height:200,
modal: true,
resizable: false
});
$('#dialog3').dialog({
autoOpen: false,
width:400,
height:250,
modal: true,
resizable: false
});
});
function opendialog(flag){
var dialogid="#dialog"+flag;
$(dialogid).dialog('open');
return false;
}
</script>
<div id="dialog1" title="修改图片" style="display:none;">
<table class="tableout" cellspacing="5" align="center">
<tr>
<td>上传图片:</td>
<td><input type="text" name="keyword" id="keyword" style="width:200px;" /></td>
<td><button class="but2">浏览</button> <button class="but2">上传</button></td>
</tr>
<tr>
<td>图片描述:</td>
<td><input type="text" name="keyword" id="keyword" style="width:200px;" /></td>
<td> </td>
</tr>
<tfoot>
<tr>
<td> </td>
<td style="padding-top:20px;"><button class="but1">提交</button></td>
<td></td>
</tr>
</tfoot>
</table>
</div>
<div id="dialog2" title="修改文字" style="display:none;">
<table class="tableout" cellspacing="5" align="center">
<tr>
<td><input type="text" name="keyword" id="keyword" style="width:300px;" value="已有的文字" /></td>
</tr>
<tr>
<td style="padding-top:20px;"><button class="but1">提交</button></td>
</tr>
</table>
</div>
<div id="dialog3" title="修改文章" style="display:none;">
<table class="tableout" cellspacing="5" align="center">
<tr>
<td><textarea name="" cols="" rows="" style="width:350px;height:100px;">文章区域文章区域文章区域文章区域文章区域文章区域文章区域文章区域文章区域文章区域文章区域文章区域文章区域文章区域</textarea></td>
</tr>
<tr>
<td style="padding-top:20px;"><button class="but1">提交</button></td>
</tr>
</table>
</div>
</body>
</html>