Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Is a SELECT Tag/Element
What Is a SELECT Tag/Element? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields
✍: FYIcenter.com
A "select" element is an inline element that you can use to define a dropdown input field in a form. Here are basic rules about a "select" element:
Here is a tutorial example of dropdown list fields:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Dropdown List</title> </head> <body> <h4>Online Survey</h4> <form action="http://localhost/submit" method="get"> <p style="background-color: #eeeeee; padding: 8px;"> Your name: <input type="text" name="name" value="Joe"/><br/> How did you find FYIcenter: <select name="channel"> <option>Google search</option> <option>Yahoo search</option> <option>Your friend</option> </select><br/> <input type="submit" value="Submit"/> </p> </form> </body> </html>
If you save the above document as dropdown_list.html, and view it with
Internet Explorer, you will see a dropdown list in the form as shown below:
2007-05-12, 5027👍, 0💬
Popular Posts:
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
Can you write a program to interchange 2 variables without using the third one? a = 7; b = 2; a = a ...
What Does a HTML Document Look Like? A HTML document is a normal text file with predefined tags mixe...
How To Merge Cells in a Row? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells If you wan...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...