Jump to content
  • 0

Validation


Simel
 Share

Question

Line 20, Column 35: there is no attribute "name"

<form id="login " class="x" name= " login_form" method="post" action="#" >

?

You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

Почему он ругается на кавычку и как это поправить?

Edited by Simel
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
Почему он ругается на кавычку

Он не ругается на кавычку :)

и как это поправить?

  1. Прочитать, на что именно он ругается;
  2. Открыть указанный в доктайпе DTD (или спеку соотв. языка) и посмотреть, какие атрибуты допустимы для тега form;
  3. Привести в соответствие (либо убрать запрещенный атрибут, либо сменить доктайп на тот, где он разрешен).

Link to comment
Share on other sites

  • 0

Смотрим:

<!ATTLIST form
%attrs;
action %URI; #REQUIRED
method (get|post) "get"
enctype %ContentType; "application/x-www-form-urlencoded"
onsubmit %Script; #IMPLIED
onreset %Script; #IMPLIED
accept %ContentTypes; #IMPLIED
accept-charset %Charsets; #IMPLIED
>

%attrs; расшифровывается в это (идем по ссылке):

<!ENTITY % attrs "%coreattrs; %i18n; %events;">

где % coreattrs — это

<!ENTITY % coreattrs
"id ID #IMPLIED
class CDATA #IMPLIED
style %StyleSheet; #IMPLIED
title %Text; #IMPLIED"
>

Как видно, никакого нейма нет. В атрибутах локализации и скриптовых событий его нет и подавно.

Даже в HTML4, чьей переформулировкой в XML является XHTML 1.0, про name для форм написано следующее:

Note. This attribute has been included for backwards compatibility. Applications should use the id attribute to identify elements.

А так ли нужен этот name на самом деле?..

  • Like 1
Link to comment
Share on other sites

  • 0

Смотрим:

<!ATTLIST form
%attrs;
action %URI; #REQUIRED
method (get|post) "get"
enctype %ContentType; "application/x-www-form-urlencoded"
onsubmit %Script; #IMPLIED
onreset %Script; #IMPLIED
accept %ContentTypes; #IMPLIED
accept-charset %Charsets; #IMPLIED
>

%attrs; расшифровывается в это (идем по ссылке):

<!ENTITY % attrs "%coreattrs; %i18n; %events;">

где % coreattrs — это

<!ENTITY % coreattrs
"id ID #IMPLIED
class CDATA #IMPLIED
style %StyleSheet; #IMPLIED
title %Text; #IMPLIED"
>

Как видно, никакого нейма нет. В атрибутах локализации и скриптовых событий его нет и подавно.

Даже в HTML4, чьей переформулировкой в XML является XHTML 1.0, про name для форм написано следующее:

Note. This attribute has been included for backwards compatibility. Applications should use the id attribute to identify elements.

А так ли нужен этот name на самом деле?..

Спасибо , за детальное разъяснение.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy