Copy code The code is as follows:<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="Car">Car</option> <option value="Train"> Train</option> <option value="Aircraft"> Aircraft</option> </select> </span><input name="box" style="width:160px;position:absolute;left:0px;"> <input value="Submit" name="submit" type="submit"/> </div> </form>'; $aa=$_GET['hh']."111"; // select the value of the drop-down menu $bb=$_GET['box']."222"; // value of input box echo $aa; echo "</br>"; echo $bb; // To get the value that can be entered into the drop-down menu, just get the value of the input box. ?> </body> </html> To get the value that can be entered into the drop-down menu, just get the value of the input box. Note: </span><input name="box" style="width:160px;position:absolute;left:0px;"> This line must be in one line and cannot be written as </span> <input name="box" style="width:160px;position:absolute;left:0px;"> After the line break, the value of the drop-down menu cannot be displayed in the input box. It can also automatically select a matching menu value based on the input. |
<<: A Brief Analysis of Patroni in Docker Containers
>>: Several specific methods of Mysql space cleaning
In CSS, element tags are divided into two categor...
I have encountered many problems in learning Dock...
Today I saw a little trick for HTML text escaping ...
Table of contents Overview 1. Dependency Injectio...
MySQL prompts the following error I went to "...
Preface: After studying the previous article, we ...
Because the company asked me to build a WebServic...
When using SQL to extract data, we often encounte...
Mysql join query 1. Basic concepts Connect each r...
This article uses examples to describe the manage...
Docker is really cool, especially because it'...
Regarding the issue that JavaScript strict mode d...
Table of contents Class Component Functional Comp...
Table of contents Preface 1. Install the service ...
Mainly discuss its structure and some important pr...