📄 updateshop.jsp
字号:
ch.active.className=""
}
}
ch.active = el
lastHighlight = el
if ((el.className=="disabled") || (el.className=="disabledhighlight") || (el.id=="break"))
el.className = "disabledhighlight"
else {
if (el.id!="break") {
el.className = "highlight"
if (el._childItem==null)
el._childItem = getChildren(el)
if (el._childItem!=null) {
doMenuDown(el)
}
}
}
}
}
}
function removeHighlight(el) {
if (el!=null)
if ((el.className=="disabled") || (el.className=="disabledhighlight"))
el.className="disabled"
else
el.className=""
}
function cleanupMenu(el) {
if (el==null) return
for (var i = 0; i < el.all.length; i++) {
var item = el.all[i]
if (item.tagName=="TABLE")
item.style.display = ""
removeHighlight(item.active)
item.active=null
}
}
function closeMenu(ch, el) {
var start = ch
while (ch.className!="root") {
ch = ch.parentElement
if (((!ch.contains(el)) && (ch.className!="root"))) {
start=ch
}
}
cleanupMenu(start)
}
function checkMenu() {
if (document.all.menuBar==null) return
if ((!document.all.menuBar.contains(event.srcElement)) && (menuActive!=null)) {
clearHighlight(menuActive)
closeMenu(menuActive)
active = false
menuActive=null
choiceActive = null
}
}
function doCheckOut() {
var el = event.toElement
if ((!active) && (menuActive!=null) && (!menuActive.contains(el))) {
clearHighlight(menuActive)
menuActive=null
}
}
function processKey() {
if (active) {
switch (event.keyCode) {
case 13: lastHighlight.click(); break;
case 39: // right
if ((lastHighlight==null) || (lastHighlight._childItem==null)) {
var idx = menuActive.cellIndex
//if (idx==menuActive.offsetParent.cells.length-2)
if (idx==getElement(menuActive,"TR").cells.length-2)
idx = 0
else
idx++
newItem = getElement(menuActive,"TR").cells[idx]
} else
{
newItem = lastHighlight._childItem.rows[0].cells[0]
}
doHighlight(newItem)
break;
case 37: //left
if ((lastHighlight==null) || (getElement(getRootTable(lastHighlight),"TR").id=="menuBar")) {
var idx = menuActive.cellIndex
if (idx==0)
idx = getElement(menuActive,"TR").cells.length-2
else
idx--
newItem = getElement(menuActive,"TR").cells[idx]
} else
{
newItem = getElement(lastHighlight,"TR")
while (newItem.tagName!="TD")
newItem = newItem.parentElement
}
doHighlight(newItem)
break;
case 40: // down
if (lastHighlight==null) {
itemCell = menuActive._childItem
curCell=0
curRow = 0
}
else {
itemCell = getRootTable(lastHighlight)
if (lastHighlight.cellIndex==getElement(lastHighlight,"TR").cells.length-1) {
curCell = 0
curRow = getElement(lastHighlight,"TR").rowIndex+1
if (getElement(lastHighlight,"TR").rowIndex==itemCell.rows.length-1)
curRow = 0
} else {
curCell = lastHighlight.cellIndex+1
curRow = getElement(lastHighlight,"TR").rowIndex
}
}
doHighlight(itemCell.rows[curRow].cells[curCell])
break;
case 38: // up
if (lastHighlight==null) {
itemCell = menuActive._childItem
curRow = itemCell.rows.length-1
curCell= itemCell.rows[curRow].cells.length-1
}
else {
itemCell = getRootTable(lastHighlight)
if (lastHighlight.cellIndex==0) {
curRow = getElement(lastHighlight,"TR").rowIndex-1
if (curRow==-1)
curRow = itemCell.rows.length-1
curCell= itemCell.rows[curRow].cells.length-1
} else {
curCell = lastHighlight.cellIndex - 1
curRow = getElement(lastHighlight,"TR").rowIndex
}
}
doHighlight(itemCell.rows[curRow].cells[curCell])
break;
if (lastHighlight==null) {
curCell = menuActive._childItem
curRow = curCell.rows.length-1
}
else {
curCell = getRootTable(lastHighlight)
if (getElement(lastHighlight,"TR").rowIndex==0)
curRow = curCell.rows.length-1
else
curRow = getElement(lastHighlight,"TR").rowIndex-1
}
doHighlight(curCell.rows[curRow].cells[0])
break;
}
}
}
function make_menu() {
document.write("<table width='100%' cellpadding='0' cellspacing='0' border='0' style='background=rgb(212,208,200); BACKGROUND: buttonface; BORDER-BOTTOM: buttonshadow 1px solid; BORDER-LEFT: buttonhighlight 1px solid; BORDER-RIGHT: buttonshadow 1px solid; BORDER-TOP: buttonhighlight 1px solid;'>");
document.write("<tr><TD><SPAN class=handbtn></SPAN></TD><td>");
document.write("<TABLE ID=menuBar ONSELECTSTART='return false' ONCLICK='processClick()' ONMOUSEOVER='doHighlight(event.toElement)' ONMOUSEOUT='doCheckOut()' ONKEYDOWN='processKey()'><TR>");
j=1;
while(eval("window.OutBarFolder"+j))
j++;
i=1;
while(i<j)
{
Folder=eval("OutBarFolder"+i)
document.write("<TD NOWRAP CLASS=root>"+Folder[0]+"<TABLE CELLSPACING=0 CELLPADDING=0>");
MakeItems(Folder);
document.write("</TABLE>");
i++;
}
document.write("</TD></TR></TABLE>");
document.write("</td><td width=100% ONMOUSEOVER='processClick()'></td></tr></table>");
}
function MakeItems(Folder)
{
var items=0;
while(Folder[items+1])
items+=5;
items/=5;
for(var i=1;i<items*5;i+=5)
{
/*
if(Folder[i+1]=="BREAK") {
document.write("<TD NOWRAP ID=break><HR></TD>");
}
else {
document.write("<TR><TD NOWRAP>"+Folder[i+1]+"</TD></TR>");
}
*/
document.write("<TR><TD NOWRAP"+((Folder[i+0]=="none")?"":" ID='"+Folder[i+0]+"'")+((Folder[i+3]=="none")?"":" onclick=\"go('"+Folder[i+3]+"')\"")+">"+((Folder[i+1]=="default")?"":"<font color="+Folder[i+1]+">")+Folder[i+2]+((Folder[i+1]=="default")?"":"</font>")+"</TD></TR>");
//alert("<TR><TD NOWRAP "+((Folder[i+0]=="none")?"":"ID='"+Folder[i+0]+"'")+((Folder[i+3]=="none")?"":" onclick=go('"+Folder[i+3]+"')")+">"+((Folder[i+1]=="default")?"":"<font color="+Folder[i+1]+">")+Folder[i+2]+((Folder[i+1]=="default")?"":"</font>")+"</TD></TR>");
}
}
function go(iurl) {
parent.location=iurl;
}
make_menu();
</script>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td width="70%" style="vertical-align: top">
<table width="675" height="400">
<tr>
<td align="center">
图书编号
</td >
<td align="center">
图书名称
</td>
<td align="center">
价格(元)
</td>
<td align="center">
图书数量
</td>
<td>
图书类型
</td>
<td align="center">
图书图片
</td>
<td align="center">
详细信息
</td>
<td align="center">
是否操作
</td>
</tr>
<%
//分页
request.setCharacterEncoding("gb2312");
BookDAO dao = new BookDAO();
String strId = request.getParameter("Pageid");
if (strId == null) {
strId = "1";
}
int Pageid = Integer.parseInt(strId);
List list = dao.queryall(Pageid);
if (list != null) {
for (int i = 0; i < list.size(); i++) {
Address aa = (Address) list.get(i);
%>
<tr>
<form action="../ShopplingCart" method="post" name="UpdateForm">
<td>
<input type="text" name="Bookuid" value="<%=aa.getBookuid()%>" style="width: 60">
</td>
<td>
<input type="text" name="Bookname" value="<%=aa.getBookname()%>">
</td>
<td>
<input type="text" name="Bookprice" value="<%=aa.getBookprice()%>" style="width: 50">
</td>
<td>
<input type="text" name="Booknumber" value="<%=aa.getBooknumber() %>" style="width: 80">
</td>
<td>
<select style="width: 150" name="Booktype">
<option>
电脑世界之窗
</option>
<option>
外语精品书架
</option>
<option>
最新休闲杂志
</option>
<option>
最新动态小说
</option>
<option>
保健书籍动态
</option>
</select>
</td>
<td>
<img src="../image/<%=aa.getBookpic()%>" height="100" width="80">
</td>
<td>
<input type="text" name="Bookpicture" value="<%=aa.getBookpictrue() %>" style="width: 200">
</td>
<td>
<input type="submit" value="确认修改">
<input type="hidden" name="Bookid" value="<%=aa.getBookid() %>">
<input type="hidden" name="Bookpic" value="<%=aa.getBookpic() %>">
<input type="hidden" name="action" value="updatashop">
</form>
</td>
</tr>
<%
}
}
%>
<tr>
<td >
<a href="updateshop.jsp?Pageid=<%=dao.getPageid() - 1%>">上一页</a>
</td>
<td>
<a href="updateshop.jsp?Pageid=<%=dao.getPageid() + 1%>">下一页</a>
</td>
<td colspan="2">
当前页为:
<%=dao.getPageid()%>
</td>
<td width="146" colspan="3">
总页数为:
<%=dao.getPagenum()%>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -