问题描述
- 求一个简单点的,根据下拉列表内容,在jsp页面输出List的一个小项目
-
我还是个菜鸟,求给的东西简单易懂,有一些介绍是最好的。谢谢!
解决方案
<script>
function showList()
{
document.getElementById("div0").style.display = "none";
document.getElementById("div1").style.display = "none";
document.getElementById("div2").style.display = "none";
if(document.getElementById("dishType").value==0)
{
document.getElementById("div0").style.display = "block";
}
if(document.getElementById("dishType").value==1)
{
document.getElementById("div1").style.display = "block";
}
if(document.getElementById("dishType").value==2)
{
document.getElementById("div2").style.display = "block";
}
}
</script>
<html>
<head>
<title>根据菜系点餐</title>
</head>
<body>
<br>
<br>
<div align="center"><h1>请选择菜系:</h1></div>
<br>
<div align="center">
<select id="dishType" name="dishType" style="width:300px;height:30px" onchange="javascript:showList();">
<option value=0 selected></option>
<option value=1>湘菜</option>
<option value=2>川菜</option>
</select>
</div>
<hr/>
<br>
<br>
<br>
<br>
<div id="div0">
<table align="center" width="500px" border="1">
<tr>
<td width="20%" height="30px">序号</td>
<td width="40%" height="30px">菜名</td>
<td width="40%" height="30px">价格</td>
</tr>
</table>
</div>
<div id="div1" style="display:none">
<table align="center" width="500px" border="1">
<tr>
<td width="20%" height="30px">序号</td>
<td width="40%" height="30px">菜名</td>
<td width="40%" height="30px">价格</td>
</tr>
<tr>
<td width="20%" height="30px">1</td>
<td width="40%" height="30px">小炒肉</td>
<td width="40%" height="30px">28元</td>
</tr>
<tr>
<td width="20%" height="30px">2</td>
<td width="40%" height="30px">毛家红烧肉</td>
<td width="40%" height="30px">48元</td>
</tr>
<tr>
<td width="20%" height="30px">3</td>
<td width="40%" height="30px">腊味合蒸</td>
<td width="40%" height="30px">38元</td>
</tr>
</table>
</div>
<div id="div2" style="display:none">
<table align="center" width="500px" border="1">
<tr>
<td width="20%" height="30px">序号</td>
<td width="40%" height="30px">菜名</td>
<td width="40%" height="30px">价格</td>
</tr>
<tr>
<td width="20%" height="30px">1</td>
<td width="40%" height="30px">麻婆豆腐</td>
<td width="40%" height="30px">18元</td>
</tr>
<tr>
<td width="20%" height="30px">2</td>
<td width="40%" height="30px">水煮肉片</td>
<td width="40%" height="30px">38元</td>
</tr>
<tr>
<td width="20%" height="30px">3</td>
<td width="40%" height="30px">宫保鸡丁</td>
<td width="40%" height="30px">28元</td>
</tr>
</table>
</div>
<div id="div3" style="display:none"></div>
<div id="div4" style="display:none"></div>
</body>
</html>
解决方案二:
http://www.iteye.com/problems/46659
http://down.51cto.com/data/1367501
解决方案三:
function showList()
{
document.getElementById("div0").style.display = "none";
document.getElementById("div1").style.display = "none";
document.getElementById("div2").style.display = "none";
if(document.getElementById("dishType").value==0)
{
document.getElementById("div0").style.display = "block";
}
if(document.getElementById("dishType").value==1)
{
document.getElementById("div1").style.display = "block";
}
if(document.getElementById("dishType").value==2)
{
document.getElementById("div2").style.display = "block";
}
}
根据菜系点餐
请选择菜系:
相关文章
- jsp-怎么默认显示一个下拉选的内容呀!点击下拉选会出现不同的内容!
- spring-使用Spring做登录页面的时候,怎样将有参数的jsp页面返回
- javascript-怎么将jsp中list变量传给js文件,求大神帮帮忙
- sitemesh装饰一个用&lt;jsp:include&gt;包含另一个jsp页面jsp页面,不能正常显示
- jsp 页面select下拉框显示list问题
- javaweb-我向jsp页面发送了一个List&lt;POJO&gt;,如何在前台把这个List再发送回后台呢?
- jsp-关于JSP页面默认只有一个下拉选的内容!急求解答呀!
- easyui-新手对Easy UI有个小问题,求回答TnT
- jsp-JSP,MVC查询外键所在表中的其他内容并放入list中在前台页面显示数据
- jsp-cms 可以引用静态页面吗
【云栖快讯】2017互联网超级工程阿里双11完美落幕,交易额突破1682亿,但阿里工程师如何玩转“超级工程”,背后黑科技又是如何?12月13-14日,12位大咖直播分享揭秘1682亿背后技术实践,马上预约 详情请点击
热门推荐
- 高性能云服务器2折起
- 云服务器配置
- 技术资料
- 云计算
- 域名
- shell
- node.js
- 问答
- java
- mysql
- C++
- python
- jQuery
- Android
- asp
- PHP技巧
- jQuery教程
- JavaScript技巧
- JS
- SEO
- sql server
- mysql教程
- 前端
- 技术文集
- 技术
- 主题地图
- A
- z
- 云服务器哪家好
- API
- 大数据
- 云安全
- 云存储
- 云计算
- 获取公众号授权失败
- 兼容性疑难解答
- path
- stm32
- jsonobject
- product
前三篇
- jquery-全网页通用table选项卡
- hbase-如何将mysql数据库中的数据存到hadoop上
- 初学者-myeclipse导入别人项目config.strut全报错
后三篇
- java 中方法调用的奇怪问题
- 往数据库新增一条记录insert into之前,先查询判断一下字段里面是否有重复值,怎么实现?
- c c++-关于C/C++中char*之间的比较和数组之间的比较的问题
(yq.aliyun.com)为您免费提供list-求一个简单点的,根据下拉列表内容,在jsp页面输出List的一个小项目相关信息,包括
list
,
下拉列表
,
jsp页面
输出
的信息
,所有list-求一个简单点的,根据下拉列表内容,在jsp页面输出List的一个小项目相关内容均不代表的意见!
该页面h5页面的地址是:https://m.aliyun.com/yunqi/wenzhang/show_55112,您可以点击list-求一个简单点的,根据下拉列表内容,在jsp页面输出List的一个小项目-手机站访问。