本文摘自PHP中文网,作者php中世界最好的语言,侵删。
这次给大家带来html可输入下拉菜单应该如何编写,编写html可输入下拉菜单的注意事项有哪些,下面就是实战案例,一起来看一下。代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <html>
<head>
<meta http-equiv= "Content-Type" content= "text/html; charset=UTF-8" />
</head>
<body>
<?php
echo '
<form name= "DDForm" method= "GET" action= "" >
<p style= "position:relative;" >
<span style= "margin-left:100px;width:18px;overflow:hidden;" >
<select style= "width:180px;margin-left:-100px" onchange= "this.parentNode.nextSibling.value=this.value" name= "hh" >
<option value= "汽车" >汽车 </option>
<option value= "火车" > 火车 </option>
<option value= "飞机" > 飞机 </option>
</select>
</span><input name= "box" style= "width:160px;position:absolute;left:0px;" >
<input value= "提交" name= "submit" type= "submit" />
</p>
</form>';
$aa = $_GET [ 'hh' ]. "111" ;
$bb = $_GET [ 'box' ]. "222" ;
echo $aa ;
echo "</br>" ;
echo $bb ;
?>
</body>
</html>
|
要获得可输入下拉菜单的值,只要获得输入框的值即可。
注意:
1 | </span><input name= "box" style= "width:160px;position:absolute;left:0px;" >
|
这行要在一行中,不能写成
1 2 | </span>
<input name= "box" style= "width:160px;position:absolute;left:0px;" >
|
换行了之后则下拉菜单的值不能显示在 输入框中。
还可以根据输入的内容自动选择匹配的菜单值。
相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
相关阅读:
IE8兼容的重要属性X-UA-Compatible
html怎样使用超链接打开新窗口并且控制该窗口属性
在HTML的列表中,dl(dt,dd)、ul(li)、ol(li) 有什么不同
以上就是html可输入下拉菜单应该如何编写的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
Html文字居中的样式是什么
Html编辑软件有哪些
Html中如何创建新元素
Html和asp之间的区别是什么
动画工具dragonbones的常用术语和使用方法介绍(图)
Html area标签怎么用
怎样用Html做出移动端固定悬浮半透明搜索框
Html里padding是什么意思
Html中 table鼠标拖拽排序功能的实现
Html如何添加音乐
更多相关阅读请进入《Html》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » html可输入下拉菜单应该如何编写