Jump to content
  • 0

Синтаксис XHTML: name или id в тегах <form> и <input>


Shur
 Share

Question

Согласно Вашей статье "Шаг за шагом > XHTML по шагам > Синтаксис XHTML" вместо параметра name необходимо указывать атрибут id. Относится ли это к тегам

и ?

ЗЫ: может пост не по теме - просто "там" нет обсуждения...

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

id - это своего рода индификатор , по которому можно обратится и найти объект.

Например задать стиль в css:

 
<style>
#my {background: black; color: red;}
</style>
<div id='my'>
TEXT
</div>

или обратится к нему через javascript:

<style>
.my { background: black; color: red; }
</style>
<script type='text/javascript'>
var myDiv = document.getElementById('my'); // обратиться к объекту
myDiv.className = 'my' // и присвоить ему стиль
</script>
<div id='my'>
TEXT
</div>

А 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