Jump to content
  • 0

Возврат к предыдущему изображению


rrock
 Share

Question

Схема такая

есть таблица заполненная картинками

<table align="center" bgcolor="#999999" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><p class="h5">01</p>
<a href="#SWView"><img src="images/all/p_t_pln1.gif" width="21" height="22" alt="Port 0/1" border="0" id="Prt_2_00_01_Img" onClick="click_port(this);" onMouseOver="on_port(this);" onMouseOut="out_port(this);"></a></td>
<td><p class="h5">03</p>
<a href="#SWView"><img src="images/all/p_t_pln1.gif" width="21" height="22" alt="Port 0/3" border="0" id="Prt_2_00_03_Img" onClick="click_port(this);" onMouseOver="on_port(this);" onMouseOut="out_port(this);"></a></td>
<td><p class="h5">05</p>
<a href="#SWView"><img src="images/all/p_t_pln1.gif" width="21" height="22" alt="Port 0/5" border="0" id="Prt_2_00_05_Img" onClick="click_port(this);" onMouseOver="on_port(this);" onMouseOut="out_port(this);"></a></td>
</tr>
</table>

есть скрипт

function click_switch(switchid){
$.post('info.php',{id: switchid.id, what: 'link'},show_links);
}

выдающий необходимую информацию на функцию изменения картинок

function show_links(string)
{
var port;
var port_split;
var switch_id;
var switch_id1;
var port_id;
var port_status;
var port_image;

ports = string.split('/');
switch_id = ports[0].split('_')[1];
for (i = 1; i < ports.length-1;i++){
port_split = ports[i].split('_');
port_id = port_split[0];
port_status = port_split[1];
port_image = "Prt_"+switch_id+"_00_"+port_id+"_Img";
setPortImage(document.getElementById(port_image),port_status);
}
//alert(port_image);
}

далее

setPortImage();

перерисовывает картинки меняя на них .src

Вопрос в следующем

нужно чтобы при OnMouseOver на стороннем элементе, менялась картинка на нужном (нарисованном функцией setPortImage) элементе запрошенным с сервера по средствам

$.post('info.php',{id: abonent.id, what: 'port'},show_port);

и при onMouseOut возвращалась картинка та что была до этого (не та которая по умолчанию а та что была нарисована до этого функцией setPortImage)

Спасибо.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

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