SlideShare a Scribd company logo
4
Most read
5
Most read
12
Most read
Theory and examples
28-Jun-14
What are forms?
 <form> is just another kind of HTML tag
 HTML forms are used to create (rather primitive) GUIs on Web
pages
 Usually the purpose is to ask the user for information
 The information is then sent back to the server
 A form is an area that can contain form elements
 The syntax is: <form parameters> ...form elements... </form>
 Form elements include: buttons, checkboxes, text fields, radio buttons,
drop-down menus, etc
 Other kinds of HTML tags can be mixed in with the form elements
 A form usually contains a Submit button to send the information in he
form elements to the server
 The form’s parameters tell JavaScript how to send the information to
the server (there are two different ways it could be sent)
 Forms can be used for other things, such as a GUI for simple programs
2
Forms and JavaScript
 The JavaScript language can be used to make pages that “do
something”
 You can use JavaScript to write complete programs, but...
 Usually you just use snippets of JavaScript here and there
throughout your Web page
 JavaScript code snippets can be attached to various form elements
 For example, you might want to check that a zipcode field contains a 5-
digit integer before you send that information to the server
 Microsoft sometimes calls JavaScript “active scripting”
 HTML forms can be used without JavaScript, and
JavaScript can be used without HTML forms, but they work
well together
 JavaScript for HTML is covered in a separate lecture
3
The <form> tag
 The <form arguments> ... </form> tag encloses form
elements (and probably other HTML as well)
 The arguments to form tell what to do with the user
input
 action="url" (required)
 Specifies where to send the data when the Submit button is clicked
 method="get" (default)
 Form data is sent as a URL with ?form_data info appended to the end
 Can be used only if data is all ASCII and not more than 100 characters
 method="post"
 Form data is sent in the body of the URL request
 Cannot be bookmarked by most browsers
 target="target"
 Tells where to open the page sent as a result of the request
 target= _blank means open in a new window
 target= _top means use the same window
4
The <input> tag
 Most, but not all, form elements use the input tag, with a
type="..." argument to tell which kind of element it is
 type can be text, checkbox, radio, password, hidden, submit,
reset, button, file, or image
 Other common input tag arguments include:
 name: the name of the element
 value: the “value” of the element; used in different ways for
different values of type
 readonly: the value cannot be changed
 disabled: the user can’t do anything with this element
 Other arguments are defined for the input tag but have meaning
only for certain values of type
5
Text input
6
A text field:
<input type="text" name="textfield" value="with an initial value">
A multi-line text field
<textarea name="textarea" cols="24" rows="2">Hello</textarea>
A password field:
<input type="password" name="textfield3" value="secret">
• Note that two of these use the input tag, but one uses textarea
Buttons
 A submit button:
<input type="submit" name="Submit" value="Submit">
 A reset button:
<input type="reset" name="Submit2" value="Reset">
 A plain button:
<input type="button" name="Submit3" value="Push Me">
 submit: send data
 reset: restore all form elements to their
initial state
 button: take some action as specified by
JavaScript
7
• Note that the type is input, not “button”
Checkboxes
 A checkbox:
<input type="checkbox" name="checkbox”
value="checkbox" checked>
 type: "checkbox"
 name: used to reference this form element from JavaScript
 value: value to be returned when element is checked
 Note that there is no text associated with the checkbox—you
have to supply text in the surrounding HTML
8
Radio buttons
Radio buttons:<br>
<input type="radio" name="radiobutton" value="myValue1">
male<br>
<input type="radio" name="radiobutton" value="myValue2" checked>
female
 If two or more radio buttons have the same name, the user
can only select one of them at a time
 This is how you make a radio button “group”
 If you ask for the value of that name, you will get the value
specified for the selected radio button
 As with checkboxes, radio buttons do not contain any text
9
Drop-down menu or list
 A menu or list:
<select name="select">
<option value="red">red</option>
<option value="green">green</option>
<option value="BLUE">blue</option>
</select>
 Additional arguments:
 size: the number of items visible in the list (default is "1")
 multiple: if set to "true", any number of items may be selected
(default is "false")
10
Hidden fields
 <input type="hidden" name="hiddenField" value="nyah">
&lt;-- right there, don't you see it?
 What good is this?
 All input fields are sent back to the server, including hidden fields
 This is a way to include information that the user doesn’t need to see
(or that you don’t want her to see)
 The value of a hidden field can be set programmatically (by JavaScript)
before the form is submitted
11
A complete example<html>
<head>
<title>Get Identity</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
</head>
<body>
<p><b>Who are you?</b></p>
<form method="post" action="">
<p>Name:
<input type="text" name="textfield">
</p>
<p>Gender:
<input type="radio" name="gender" value="m">Male
<input type="radio" name="gender" value="f">Female</p>
</form>
</body>
</html>
12

More Related Content

PPT
Css Ppt
PPT
Php forms
PPTX
PHP Cookies and Sessions
PPTX
HTML Forms
PPTX
An Overview of HTML, CSS & Java Script
PPTX
Html forms
PDF
CSS notes
PPTX
HTML frames and HTML forms
Css Ppt
Php forms
PHP Cookies and Sessions
HTML Forms
An Overview of HTML, CSS & Java Script
Html forms
CSS notes
HTML frames and HTML forms

What's hot (20)

PPT
Span and Div tags in HTML
PPTX
Javascript alert and confrim box
PPTX
Javascript 101
PPTX
Css box-model
PDF
CSS Day: CSS Grid Layout
PPTX
New Elements & Features in HTML5
PDF
3. Java Script
PDF
Intro to HTML and CSS basics
PDF
GET and POST in PHP
PDF
PHP Loops and PHP Forms
PDF
Introducing CSS Grid Layout
PPTX
Html forms
PPTX
Css selectors
PPTX
Html links
PDF
HTML CSS Basics
PPT
PHP - Introduction to File Handling with PHP
PPTX
HTML Forms
PPTX
Span and Div tags in HTML
Javascript alert and confrim box
Javascript 101
Css box-model
CSS Day: CSS Grid Layout
New Elements & Features in HTML5
3. Java Script
Intro to HTML and CSS basics
GET and POST in PHP
PHP Loops and PHP Forms
Introducing CSS Grid Layout
Html forms
Css selectors
Html links
HTML CSS Basics
PHP - Introduction to File Handling with PHP
HTML Forms
Ad

Viewers also liked (20)

PDF
Html forms
PPT
Tables and Forms in HTML
PPSX
Introduction to Html5
PPTX
Table and Form HTML&CSS
PPTX
Tables and Forms in HTML
PDF
Open Source and Open Data in the Age of the Cloud
PPTX
Session and cookies ,get and post methods
PPTX
CSS Animations & Transitions
PDF
CSS3 Transforms Transitions and Animations
PDF
Basic css-tutorial
PDF
Creating Beautiful CSS3 Animations - FITC Amsterdam 2016
PDF
Fundamental HTML5
PPTX
CSS Transitions, Transforms, Animations
PPTX
Html tables, forms and audio video
PDF
Introduction to CSS3
PPT
CSS Basics
PPT
PHP & MySQL 教學
PDF
Architecture of the Web browser
PPT
Java Servlets
Html forms
Tables and Forms in HTML
Introduction to Html5
Table and Form HTML&CSS
Tables and Forms in HTML
Open Source and Open Data in the Age of the Cloud
Session and cookies ,get and post methods
CSS Animations & Transitions
CSS3 Transforms Transitions and Animations
Basic css-tutorial
Creating Beautiful CSS3 Animations - FITC Amsterdam 2016
Fundamental HTML5
CSS Transitions, Transforms, Animations
Html tables, forms and audio video
Introduction to CSS3
CSS Basics
PHP & MySQL 教學
Architecture of the Web browser
Java Servlets
Ad

Similar to 2. HTML forms (20)

PPT
11-html-forms.pptydy6rfyf6rrydyf6r6ryfydydyff
PPT
11-html-forms.ppt
PPT
20-html-forms.ppt
PPTX
html forms
PPT
HtmlForms- basic HTML forms description.
PDF
8741aad2f359a5ee62afdf4cc4341440 (1) (1) (1).pdf
PPTX
HYPERTEXT MARK UP LANGUAGES (HTML) FORMS
PPT
20 html-forms
PPTX
HTML Forms: The HTML element represents a document section containing interac...
PPT
05 html-forms
PPT
Html class-04
PPT
Html Forms for creating frames and frameset
PPTX
Html Forms for lecture BSIT SSC HCI LECTURE
PPT
Html,Css and Javascript Forms using different tags
PPT
Html Forms.ppt
PPTX
1. Lecture 1 WT- Forms.pptxl;kjhgfdsfghj
PPTX
Gitika html ppt
PPTX
PDF
Web Development 5
11-html-forms.pptydy6rfyf6rrydyf6r6ryfydydyff
11-html-forms.ppt
20-html-forms.ppt
html forms
HtmlForms- basic HTML forms description.
8741aad2f359a5ee62afdf4cc4341440 (1) (1) (1).pdf
HYPERTEXT MARK UP LANGUAGES (HTML) FORMS
20 html-forms
HTML Forms: The HTML element represents a document section containing interac...
05 html-forms
Html class-04
Html Forms for creating frames and frameset
Html Forms for lecture BSIT SSC HCI LECTURE
Html,Css and Javascript Forms using different tags
Html Forms.ppt
1. Lecture 1 WT- Forms.pptxl;kjhgfdsfghj
Gitika html ppt
Web Development 5

Recently uploaded (20)

PDF
System and Network Administration Chapter 2
PPTX
Materi_Pemrograman_Komputer-Looping.pptx
PDF
Become an Agentblazer Champion Challenge Kickoff
PDF
top salesforce developer skills in 2025.pdf
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Online Work Permit System for Fast Permit Processing
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
ai tools demonstartion for schools and inter college
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
The Role of Automation and AI in EHS Management for Data Centers.pdf
PDF
Perfecting Gamer’s Experiences with Performance Testing for Gaming Applicatio...
PDF
How to Confidently Manage Project Budgets
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Digital Strategies for Manufacturing Companies
PDF
ShowUs: Pharo Stream Deck (ESUG 2025, Gdansk)
PDF
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
PDF
IEEE-CS Tech Predictions, SWEBOK and Quantum Software: Towards Q-SWEBOK
PDF
System and Network Administraation Chapter 3
PPTX
AIRLINE PRICE API | FLIGHT API COST |
System and Network Administration Chapter 2
Materi_Pemrograman_Komputer-Looping.pptx
Become an Agentblazer Champion Challenge Kickoff
top salesforce developer skills in 2025.pdf
PTS Company Brochure 2025 (1).pdf.......
Upgrade and Innovation Strategies for SAP ERP Customers
Online Work Permit System for Fast Permit Processing
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
ai tools demonstartion for schools and inter college
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
The Role of Automation and AI in EHS Management for Data Centers.pdf
Perfecting Gamer’s Experiences with Performance Testing for Gaming Applicatio...
How to Confidently Manage Project Budgets
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Digital Strategies for Manufacturing Companies
ShowUs: Pharo Stream Deck (ESUG 2025, Gdansk)
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
IEEE-CS Tech Predictions, SWEBOK and Quantum Software: Towards Q-SWEBOK
System and Network Administraation Chapter 3
AIRLINE PRICE API | FLIGHT API COST |

2. HTML forms

  • 2. What are forms?  <form> is just another kind of HTML tag  HTML forms are used to create (rather primitive) GUIs on Web pages  Usually the purpose is to ask the user for information  The information is then sent back to the server  A form is an area that can contain form elements  The syntax is: <form parameters> ...form elements... </form>  Form elements include: buttons, checkboxes, text fields, radio buttons, drop-down menus, etc  Other kinds of HTML tags can be mixed in with the form elements  A form usually contains a Submit button to send the information in he form elements to the server  The form’s parameters tell JavaScript how to send the information to the server (there are two different ways it could be sent)  Forms can be used for other things, such as a GUI for simple programs 2
  • 3. Forms and JavaScript  The JavaScript language can be used to make pages that “do something”  You can use JavaScript to write complete programs, but...  Usually you just use snippets of JavaScript here and there throughout your Web page  JavaScript code snippets can be attached to various form elements  For example, you might want to check that a zipcode field contains a 5- digit integer before you send that information to the server  Microsoft sometimes calls JavaScript “active scripting”  HTML forms can be used without JavaScript, and JavaScript can be used without HTML forms, but they work well together  JavaScript for HTML is covered in a separate lecture 3
  • 4. The <form> tag  The <form arguments> ... </form> tag encloses form elements (and probably other HTML as well)  The arguments to form tell what to do with the user input  action="url" (required)  Specifies where to send the data when the Submit button is clicked  method="get" (default)  Form data is sent as a URL with ?form_data info appended to the end  Can be used only if data is all ASCII and not more than 100 characters  method="post"  Form data is sent in the body of the URL request  Cannot be bookmarked by most browsers  target="target"  Tells where to open the page sent as a result of the request  target= _blank means open in a new window  target= _top means use the same window 4
  • 5. The <input> tag  Most, but not all, form elements use the input tag, with a type="..." argument to tell which kind of element it is  type can be text, checkbox, radio, password, hidden, submit, reset, button, file, or image  Other common input tag arguments include:  name: the name of the element  value: the “value” of the element; used in different ways for different values of type  readonly: the value cannot be changed  disabled: the user can’t do anything with this element  Other arguments are defined for the input tag but have meaning only for certain values of type 5
  • 6. Text input 6 A text field: <input type="text" name="textfield" value="with an initial value"> A multi-line text field <textarea name="textarea" cols="24" rows="2">Hello</textarea> A password field: <input type="password" name="textfield3" value="secret"> • Note that two of these use the input tag, but one uses textarea
  • 7. Buttons  A submit button: <input type="submit" name="Submit" value="Submit">  A reset button: <input type="reset" name="Submit2" value="Reset">  A plain button: <input type="button" name="Submit3" value="Push Me">  submit: send data  reset: restore all form elements to their initial state  button: take some action as specified by JavaScript 7 • Note that the type is input, not “button”
  • 8. Checkboxes  A checkbox: <input type="checkbox" name="checkbox” value="checkbox" checked>  type: "checkbox"  name: used to reference this form element from JavaScript  value: value to be returned when element is checked  Note that there is no text associated with the checkbox—you have to supply text in the surrounding HTML 8
  • 9. Radio buttons Radio buttons:<br> <input type="radio" name="radiobutton" value="myValue1"> male<br> <input type="radio" name="radiobutton" value="myValue2" checked> female  If two or more radio buttons have the same name, the user can only select one of them at a time  This is how you make a radio button “group”  If you ask for the value of that name, you will get the value specified for the selected radio button  As with checkboxes, radio buttons do not contain any text 9
  • 10. Drop-down menu or list  A menu or list: <select name="select"> <option value="red">red</option> <option value="green">green</option> <option value="BLUE">blue</option> </select>  Additional arguments:  size: the number of items visible in the list (default is "1")  multiple: if set to "true", any number of items may be selected (default is "false") 10
  • 11. Hidden fields  <input type="hidden" name="hiddenField" value="nyah"> &lt;-- right there, don't you see it?  What good is this?  All input fields are sent back to the server, including hidden fields  This is a way to include information that the user doesn’t need to see (or that you don’t want her to see)  The value of a hidden field can be set programmatically (by JavaScript) before the form is submitted 11
  • 12. A complete example<html> <head> <title>Get Identity</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <p><b>Who are you?</b></p> <form method="post" action=""> <p>Name: <input type="text" name="textfield"> </p> <p>Gender: <input type="radio" name="gender" value="m">Male <input type="radio" name="gender" value="f">Female</p> </form> </body> </html> 12