Jump to content
  • 0

как в javaScript инициализировать функцию не по id, а по результату обработки другой функции


besimpl
 Share

Question

Добрый вечер!

есть функция 

<script type="text/javascript">function setBigImage(foto) {$("#adpdp14").attr('href', $(foto).parent('.it').children('a').attr('href'));/*Меняет ссылку на полученную*/document.getElementById("dp14").src = foto.src; /*меняет само фото*/}</script>

и инициализация второй

<script>    $(function() {      $(a.fullsizable).fullsizable({        clickBehaviour: 'next'      });    });</script>

и сама див структура (устанавливает в первый большой div миниатюры, по которым кликаешь в нижнем div'е)

<div class="photo">			<div  class="img">				<a href="1.jpg" id="adpdp14" class="fullsizable" onclick='fullsizable(this);'><img src="1.jpg" id="dp14" /></a>			</div>			<div class="thumbs" >				<div class="it"><a style="display:none;" href="1.jpg" rel="example_group" ></a>					<img src="1.jpg" onclick='setBigImage(this);' alt="" /></div>				<div class="it"><a style="display:none;" href="2.jpg" rel="example_group" class="fullsizable"></a>					<img src="2.jpg" onclick='setBigImage(this);' alt="" /></div>				<div class="it"><a style="display:none;" href="3.jpg" rel="example_group" class="fullsizable"></a>					<img src="3.jpg" onclick='setBigImage(this);' alt="" /></div>				<div class="it"><a style="display:none;" href="4.jpg" rel="example_group" class="fullsizable"></a>					<img src="4.jpg" onclick='setBigImage(this);' alt="" /></div>			</div>

как срастить обе функции, как сделать инициализацию второй не по тегу а с классом.fullsizable, а по значению, на которое меняет id="adpdp14" из первой функции и при этом чтобы фотки листались, а не просто открывался в верхнем div'e текущий адрес id="adpdp14"?

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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