Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson

Select Tag (Drop down box):-

HTML select tag  का उपयोग बहुत सारे options (item list) देने के लिए किया जाता हैं। जैसे हम किसी वेबसाइट पर रजिस्ट्रेशन करते हैं तो वहां पर एक field होता हैं जिस पर क्लिक करने से पूरी लिस्ट options (item list) खुल जाती हैं। जिनमे से कोई भी option को select कर सकते हैं

Attribute

Value

Description

disabled

disabled

Specifies that a drop-down list should be disabled

multiple

multiple

यह स्पेशिफाई करता है कि एक साथ कई विकल्पों का चयन किया जा सकता है

name

name

Defines a name for the drop-down list

required

required

Specifies that the user is required to select a value before submitting the form

size

number

Defines the number of visible options in a drop-down list

 
 Option Tag:-

<option>……</option><select>……..</select>element के अंदर टैग ड्रॉप डाउन सूची में एक विकल्प को परिभाषित करते हैं।

<select>

     <option>………..</option>

     <option>………..</option>

</select>

Attribute

Value

Description

disabled

disabled

Specifies that an option should be disabled

label

text

किसी विकल्प के लिए छोटा लेबल specifie करता है

selected

selected

यह स्पेशिफाई करता है कि पेज लोड होने पर एक option पूर्व -चयनित होना चाहिए

value

text

Specifies the value to be sent to a server

 

Select Tag (Drop down box):-

The <select>….</select> tag creates a drop down list to accept a user input from a list of items.

Attribute

Value

Description

disabled

disabled

Specifies that a drop-down list should be disabled

multiple

multiple

Specifies that multiple options can be selected at once

name

name

Defines a name for the drop-down list

required

required

Specifies that the user is required to select a value before submitting the form

size

number

Defines the number of visible options in a drop-down list

 

Option Tag:-

The <option>…</option> tags inside the <select>….</select> element define an option in the drop down list.

<select>

     <option>………..</option>

     <option>………..</option>

</select>

Attribute

Value

Description

disabled

disabled

Specifies that an option should be disabled

label

text

Specifies a shorter label for an option

selected

selected

Specifies that an option should be pre-selected when the page loads

value

text

Specifies the value to be sent to a server

error: Content is protected !!