Jump to content
  • 0

Контейнер для электронного адреса


walek
 Share

Question

Друзья!

Мне нужна ваша помощь.

4 картинки. Нужно, чтобы при клике на определенную картинку, в контейнер (назовем это так) помещался соответствующий ранее вбитый e-mail. Этот контейнер с соответствующим e-mail необходим для дальнейшей манипуляции.

Знаю как поместить e-mail в текстовый инпут, а вот так скажем в скрытый контейнер не знаю ((

Прошу сильно не пинать ногами, я начинающий ... :)

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

D.S.Denton, спасибо.

Наверное я написал глупость, но при клике на картинку, картинка исчезает, а вместо картинки появляется текст - e-mail

Код в head следующий:

<SCRIPT language="javascript">
<!--
function email() {
document.getElementById('container').style.display = 'block';
document.getElementById('container').innerHTML = 'e-mail';
}
// -->
</SCRIPT>

в body такой:

<div id="container">
<img src="img.jpg" border="0" usemap="#map">
<map name="map">
<area shape="rect" coords="10,200,121,300" href="java script: email('xx@xx.ru')">
</map>
</div>

Я понимаю, что document.getElementById('id') это поиск элемента в документе, а также понимаю (вроде бы:)) свойство innerHTML, но не доконца понимаю, что сделал сам :|

D.S.Denton не поможете?

Link to comment
Share on other sites

  • 0

задача чтоб при клике по картинке, где-то в том же диве "появился" текст, так?

<div>
<img src="img.jpg" border="0" usemap="#map">
<map name="map">
<area shape="rect" coords="10,200,121,300" href="java script: email('xx@xx.ru')">
</map>
<span id="container"> </span>
</div>

текст будет помещен внутрь спана. можно в принципе не спан, а див, стронг, биг или любой другой удобный элемент.

еще вариант:

тогда вместо двух строк функции будет просто

document.getElementById('container').value = '1234567';

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