Can an html element have multiple ids?

前端 未结 18 2366
天命终不由人
天命终不由人 2020-11-22 07:40

I understand that an id must be unique within an HTML/XHTML page.

My question is, for a given element, can I assign multiple ids to it?

18条回答
  •  失恋的感觉
    2020-11-22 08:16

    http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.2

    The id attribute assigns a unique identifier to an element (which may be verified by an SGML parser).

    and

    ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").

    So "id" must be unique and can't contain a space.

提交回复
热议问题