怎么实现html 可输入下拉菜单


本文摘自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="">

<div 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"/>

</div>

</form>';

$aa=$_GET['hh']."111"; // select 下拉菜单的值

$bb=$_GET['box']."222"; // 输入框的值

echo $aa;

echo "</br>";

echo $bb;

// 要获得可输入下拉菜单的值,只要获得输入框的值即可。

?>

</body>

</html>

要获得可输入下拉菜单的值,只要获得输入框的值即可。
注意:

阅读剩余部分

相关阅读 >>

h5与传统html的区别

html表单中name属性作用是什么?name和id的差别又是什么?

transform在html是什么意思

如何在html中引入外部页面(html imports法) �c

html cite标签怎么用

html中的name属性的有哪些作用?默认的name属性又是什么?

html input标签的属性有哪些?input标签的name属性介绍

html basefont标签怎么用

html如何设置图片位置

html中的短语标签是什么?有哪些?

更多相关阅读请进入《下拉菜单》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...