Jump to content
  • 0

передача значения alt из тега img при нажатии на маленькую картинку


rigoberto
 Share

Question

Уважаемые программисты, помогите, пожалуйста!

у меня есть такая страница:

как делать средствами javascript так, чтобы при нажатии на маленькую картинку под большой картинкой появилось значение "alt" той картинки, на которую нажали? Заранее спасибо.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<title>картинки</title>

<script type="text/javascript">

function setBigImage(foto) {

document.getElementById("bigimg").src = foto.src;

}

</script>

</head>

<body>

<div>

<p style = 'text-align: center;'>

<img id = 'bigimg' src = 'animal.jpg' height = '230' alt = 'animal' />

</p>

<table border="0" cellspacing="0" cellpadding="0" align="center" style="border: 1px solid #e2e2e2;">

<tr>

<td style="border: 1px solid #e2e2e2;" align="center" class="sm12-center">

<img src = 'animal.jpg' width = '50' onclick = 'setBigImage(this)' alt = 'animal'/>

<br><strong>animal</strong>

</td>

<td style="border: 1px solid #e2e2e2;" align="center" class="sm12-center">

<img src = 'flower.jpg' width = '50' onclick = 'setBigImage(this)' alt = 'flower'/>

<br><strong>flower</strong>

</td>

<td style="border: 1px solid #e2e2e2;" align="center" class="sm12-center">

<img src = 'space.jpg' width = '50' onclick = 'setBigImage(this)' alt = 'space'/>

<br><strong>space</strong>

</td>

</tr>

</table>

</div>

</body>

</html>

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Вам нужно прочитать один атрибут и установить значение другого атрибута.

Это методы getAttribute() и setAttribute() соответственно.

То есть, что-то в таком духе:


function setBigImage(foto) {
document.getElementById("bigimg").src = foto.src;
document.getElementById("bigimg").setAttribute("alt",foto.getAttribute("alt"))
}

но если совсем честно, не надо эти onclick. Это ж лишние нагромождения.

$(".sm12-center img").click(function(){$("#bigimg").attr({src:$(this).attr("src"),alt:$(this).attr("alt")})})

и всё.

Link to comment
Share on other sites

  • 0
атрибут и установить значение другого атрибута

Установить? Атрибут, который отвечает за вывод текста под картинку? Разве такие есть? Мне кажется одними атрибутами тут не обойтись, да и устанавливать значения никаких атрибутов не надо. Достаточно получить атрибут alt и засунуть его в\под большую картинку. Примерно так:


/////////////////
////js script////
function transformAtr() {
//получаем элемент, в который будет
//выводиться текст из alt
var text = document.getElementById('description');
//элемент, в котором будут храниться
//маленькие картинки
var gallery = document.getElementById('gallery');
//получаем все элементы катинки, находящиеся
//в элементе обертки-галерее
var arrayImg = gallery.getElementsByTagName('img');
for(var i; i<arrayImg.legth; i++){
//получаем значение атрибута alt:
arrayImg[i].onclick = function(x){
var alt = this.getAttribute('alt');
text.innerHTML = alt;
}
}
////////////////////////////////////////////////////////////////////////
//кусок хтмл кода из первого поста, переделанный , но сохранивший идею//
<img id = 'bigimg' src = 'animal.jpg' height = '230' alt = 'animal' />
<p id='description'></p>
<div id='gallery'>
<img src = 'animal.jpg' width = '50' alt = 'animal'/>
<img src = 'flower.jpg' width = '50 alt = 'flower'/>
<img src = 'space.jpg' width = '50' alt = 'space'/>
</div>

Edited by moron
Link to comment
Share on other sites

  • 0

moron,

for(var i; i<arrayImg.legth; i++){ // var i --> i++ --> undefined++

ну здесь наверняка просто опечатка.

Хотя может быть и принципиальной ошибкой.

Но интересно, почему в таких случаях не использовать цикл for(i in arrayImg)?

Link to comment
Share on other sites

  • 0
Но интересно, почему в таких случаях не использовать цикл for(i in arrayImg)?

будет "черпать" из прототипа(ов)

Лучше делать так:

for(var i = arrayImg.length; i--;){
...
}

цикл будет быстрее отрабатывать

var x = arrayImg.length;

while( --x >= 0 ) {
}

:)

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