Jump to content
  • 0

jQuery - помогите написать обработчик


oke11o
 Share

Question

Здравствуйте. Помогите исправить ошибку.

Обработчик берет div блок, у которого display: none, и вставлять его в другой div блок (у которого настроены стили, и который находится в нужном мне месте). Так вот после первого клика все получается нормально. При втором клике ничего не отображается. Как будто опять свойство display: none.

HTML:

<div id="cn-menu-light-overlay">
<div id="cn-menu-light-block">
</div>
</div>
<div class="test-link">
<h4>закуска</h4>
<div class="cn-menu-object" style="display: none;">
<h4>чтобы это могло быть?</h4>
<img src="images/menu_object.jpg"></img>
<ul>
<li><span>Цена:</span>300 руб</li>
<li><span>Порция:</span>300 г</li>
<li><span>Калории:</span>300 кал</li>
<li><span>Состав:</span>Мука, вода, рис, курица, яйцо, сахар, специи. Все переммешать и выкинуть.</li>
</ul>
</div>
</div>

CSS:

#cn-menu-light-overlay img { border: none; }
#cn-menu-light-overlay { display: none;
position: absolute;
top : 0;
left : 0;
z-index : 90;
height : 1500px;
width : 100%;
background-image: url(../i/overlay.png);
}
* html #cn-menu-light-overlay{
background-color: #333;
back\ground-color: transparent;
background-image: url(blank.gif);
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../i/overlay", sizingMethod="scale");
}

#cn-menu-light-block {
position: absolute;
top : 100px;
left : 480px;
z-index : 100;
height : 400px;
width : 400px;
background-color: #FFF;
}
.test-link:hover { cursor: pointer;}

JS:

$(document).ready(function(){
$('div:.test-link').bind('click', showLightBlock);
$('div:#cn-menu-light-overlay').bind('click', hideLightBlock);
});

function showLightBlock(eventObj)
{
var block = $('div:#cn-menu-light-overlay div#cn-menu-light-block');
var d = $('div', this).children();
block.html(d);
block.find('div').css('display', 'block');;
block.css('display', 'block');;
$('div:#cn-menu-light-overlay').css('display', 'block');
}

function hideLightBlock()
{
$('div:#cn-menu-light-overlay').css('display', 'none');;

}

Edited by oke11o
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Golgi, нет это не то. Мне не важно содержимое блок. (оно то как раз и должне быть полностью заменено новым). У меня удаляется вот это содержимое ($('div', this).children()).

var d = $('div', this).children();
block.html(d);

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