博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Day2----hiddenMeau
阅读量:5315 次
发布时间:2019-06-14

本文共 1081 字,大约阅读时间需要 3 分钟。

//-------------完成对下拉菜单的隐藏和显示

<html>

<head>hiddenMeau</head>
<style type="text/css">
body{color: blue;text-align: center;}
table,form{margin: 0px;padding: 0px;}
table{border:1px solid gray; text-align: center;width: 50px;height: 50px;background: ;margin: 0px auto;display: none;}
form{margin: 50px auto;width: 200px;height: 200px;background: pink;text-align: center;}
</style>
<script type="text/javascript">
function inputBtn(){
var oBtn=document.getElementById('inputImgBtn');
var oTab=document.getElementById('inputTable');
if(oTab.style.display=='block') {oTab.style.display='none';oBtn.src='pic/downbtn.jpg';}
else {oTab.style.display='block';oBtn.src='pic/upbtn.jpg';}
}
</script>
<body>
<h2>This is to show a btn that can control the below submenu hidden or occur.</h2>
<form>
<label></label>
<label>inputMethod<img src="pic/downbtn.jpg" id="inputImgBtn" οnclick="inputBtn()"></label>
<table id="inputTable">
<tr>
<td>handwriting</td>
</tr>
<tr>
<td>pinyin</td>
</tr>
<tr>
<td>wubi</td>
</tr>
</table>
</form>
</body>
</html>

转载于:https://www.cnblogs.com/fleshy/p/4113910.html

你可能感兴趣的文章
如何改善下面的代码 领导说了很耗资源
查看>>
Quartus II 中常见Warning 原因及解决方法
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
pip和easy_install使用方式
查看>>
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>