⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 popmenu.java

📁 这是一个基于JSP和JavaBean开发模式的汽车销售网站
💻 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 + -