Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can the select option value be of different types?

Tags:

html

I want to know what is good practice for select option values.

Example

<select name="select">
  <option value="0-9">Sample</option>
  <option value="a-z">Sample</option>
  <option value="this is sample value">Sample</option>
  <option value="this-is-sample-value">Sample</option>
  <option value="this_is_sample_value">Sample</option>
  <option value="this & is | sample ** value">Sample</option>
</select>

I'm a little bit confused here. Is the select value same like input text and textarea

like image 260
wow Avatar asked Feb 04 '11 17:02

wow


3 Answers

There are no limits real to the type of data that can be set in the value attribute of the option element. Characters with special meaning in HTML do, of course, need to be represented by the appropriate entities (& as &amp; for example (although the one in the question meets the "followed by a space character" exception to the rule)).

The attribute is defined as containing CDATA:

<!ELEMENT OPTION - O (#PCDATA)         -- selectable choice -->
<!ATTLIST OPTION
  %attrs;                              -- %coreattrs, %i18n, %events --
  selected    (selected)     #IMPLIED
  disabled    (disabled)     #IMPLIED  -- unavailable in this context --
  label       %Text;         #IMPLIED  -- for use in hierarchical menus --
  value       CDATA          #IMPLIED  -- defaults to element content --
  >

— http://www.w3.org/TR/html4/interact/forms.html#h-17.6

CDATA is a sequence of characters from the document character set and may include character entities. User agents should interpret attribute values as follows:

  • Replace character entities with characters,
  • Ignore line feeds,
  • Replace each carriage return or tab with a single space.

User agents may ignore leading and trailing white space in CDATA attribute values (e.g., " myval " may be interpreted as "myval"). Authors should not declare attribute values with leading or trailing white space.

For some HTML 4 attributes with CDATA attribute values, the specification imposes further constraints on the set of legal values for the attribute that may not be expressed by the DTD.

— http://www.w3.org/TR/html4/types.html#type-cdata

The specification doesn't impose additional limits for the option element's value attribute.

like image 133
Quentin Avatar answered Sep 25 '22 21:09

Quentin


Same as a text-type input -- it can be string, float, etc. This is more a question of which is most reliable to parse when you process the form data.

like image 43
Craig Avatar answered Sep 21 '22 21:09

Craig


The posted value will be the one corresponding to the selection.

In that regards, it is treated the same way as an input type text is.

like image 33
Oded Avatar answered Sep 21 '22 21:09

Oded