?? popmenu.java
字號:
package cars;/** * <p>Title: 華奧汽車銷售集團網站</p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: 明日科技有限公司</p> * @author not attributable * @version 1.0 */public class PopMenu { String tablehead; String table; String tablebottom; String tr=""; int i=0; public PopMenu() { tablehead="<table height=100 width=160 border=0>"; tablebottom="</table>"; } public void add(String st,String str){ i=i+1; tr=tr+"<tr><form name=menu"+i+" method=post action=''><td align=center><input name='type' type='hidden' value='"+str+"'><a href='javascript:menu"+i+".submit()' style='color:#000000;'>"+st+"</a></td></form></tr>"; } public String table(){ table=tablehead+tr+tablebottom; return table; } public void setnull(){ i=0; tr=""; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -