最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - HTML tag to simply give a text an id - Stack Overflow

programmeradmin1浏览0评论

Is there a html tag to simply give a text an id/class? Let's say I have the text "email" in front of an input tag, and i want to change the text (with js) on button click. I'd need an id... p would kick the input on a new line (which i don't want) and font is a bit outdated. Any ideas?

Is there a html tag to simply give a text an id/class? Let's say I have the text "email" in front of an input tag, and i want to change the text (with js) on button click. I'd need an id... p would kick the input on a new line (which i don't want) and font is a bit outdated. Any ideas?

Share edited May 19, 2018 at 19:40 Johannes 67.8k22 gold badges84 silver badges139 bronze badges asked May 19, 2018 at 16:56 Marcel KämperMarcel Kämper 3045 silver badges16 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 4

The element for describing a subsequent input tag should be a label tag, which has to have a for attribute that contains the name of the corresponding input tag. You can therefore select that element as a label with a particular attribute.

Example

<label for="email">Email: </label><input type="text" name="email" />

and to select it and change its text:

jQuery('label[for=email]').text('your new label text');

Note that this is the only solution (for labeling inputs) which also meets accessibility standards.

You can style it any way you want using CSS.

The <span> element is a generic (i.e. it has no associated semantics) inline element that can be used for marking some content for access via CSS / JS / etc.

However, "the text 'email' in front of an input" sounds very much like a <label> element so you should probably use that instead.

<span id="..." class="..."></span> is the element you are looking for, it stays pletly inline and doesn't move any content, but still is accessible through JavaScript.

发布评论

评论列表(0)

  1. 暂无评论