I saw here square brackets that are used in class names:
<input class="validate[required,custom[onlyLetter],length[0,100]]" name="firstname" type="text" />
What does this means ?
|
I saw here square brackets that are used in class names:
What does this means ?
| |||
|
feedback
|
|
That is most likely used by some sort of validator or validation library. The class here means that validate this field denoted by
Well, this information is used by the jQuery validation library you posted the link to :) | |||||
|
feedback
|
|
The square brackets are used as an attribute selector, to select all elements that have a certain attribute value. In other words, they detect attribute presence. Example 1:
would affect only
in your code, and won't affect
Example 2: The following affects all elements with title attribute specified:
Example 3: This CSS
will affect the following html
but won't affect this:
Example 4:
will affect elements with lang attribute, which is hyphen-separated list of words beginning with “en”, like
Examples 5, 6, 7:(CSS3) The following attribute selector affects link elements whose href attribute value starts with the string “http:”.
The following attribute selector affects image elements whose src attribute values ends with the string “.png”.
The following attribute selector affects any input element whose name attribute value contains the string “choice”.
| |||||||||
feedback
|
|
Nothing. Brackets are a legal character for class names with no special meaning whatsoever. | |||
feedback
|
|
In standard HTML, they have no particular meaning. It's just more text. To the jQuery Validation plugin, they do. | ||||
|
feedback
|
|
There is no particular rule within a class name. In your example they are almost certainly being used by a JavaScript validation framework. This is because in HTML you can't simply add your own attributes to tags, therefore the validation framework is exploiting the fact that CSS class names can contain such characters in order to 'store' the validation rules within the class name. There won't actually be any corresponding class in the style-sheet - this is just a trick to work around the limitations of HTML. | |||
feedback
|
|
Here's a great resource explaining over 30 selector types. at net.tutsplus | |||
|
feedback
|