Jump to content
  • 0

Java не понимает тег style


Alfiks
 Share

Question

Помогите плиз решить проблемку.

Имеем java script:

//<!--

function menu_parent_show_on(ID){
timeout_id = window.setTimeout("menu_parent_show('"+ID+"')",1200);
}
function menu_parent_show_off(){
clearTimeout(timeout_id);
}
function menu_parent_show(ID){
if(document.getElementById(ID).style.display == 'none'){
document.getElementById(ID).style.display='';
}
}
function menu_parent_hide(ID){
if(document.getElementById(ID).style.display != 'none'){
document.getElementById(ID).style.display='none';
}
}//-->

И html вариант, который использует данный java script:

							  <div class="menu_parent"><a onMouseOut="menu_parent_show_off()" href="http://arnebiaproduct.arnebia.ru/cgi-bin/index.cgi?id=108&bsk=1" onMouseOver="menu_parent_show_on('mp_108')">Заказы</a></div>
<div class="menu_parent_tips" id="mp_108" style="display: none;">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td class="menu_parent_tipsdata" width="100%"><div class="newsthomb_left"><img src="index.cgi_files/order_small.gif" class="newsicon_left" border="0"></div>
<div align="justify">Тут описание.</div></td>
<td valign="top"><img onClick="menu_parent_hide('mp_108')" src="index.cgi_files/cross_parent.gif" alt="Close"></td>
</tr>
</tbody>
</table>
</div>

Проблема в том, что JavaScript отказывается понимать class. В упор не видит в нем вложенный стиль.

В function menu_parent_show(ID) используется стиль, а хотел бы заставить понимать class.

Как можно обойти подобную проблему?

P.S. Админ, а можно поправить в заголовке темы style на class? А то как-то несоответствие темы.

Edited by Alfiks
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Во-первых Java и JavaScript абсолютно разные языки...

Во-вторых перепишите условие. Узнать скрыт ли элемент можно проверив у него offsetWidth, если его нет значит элемент скрыт.

function menu_parent_show(ID){
if(!document.getElementById(ID).offsetWidth){
document.getElementById(ID).style.display='';
}
}

Так же рекомендую к прочтению: http://javascript.ru/ui/show-hide-toggle

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