标题说明了一切......以下是代码: 当我专注于toolBar2时会产生问题。 我希望在孩子关注的同时继续关注父母div,是否可能?
$(document).ready(function () {
$("#area_testo").focusin(function () {
$(this).css("background-color", "#FFFFCC");
$("#toolBar2").fadeIn(1000);
});
$("#area_testo").focusout(function () {
$(this).css("background-color", "#FFFFFF");
$("#toolBar2").fadeOut();
});
});
这是html:
<div id="area_testo" style="display:block; margin-top:40px;">
<div id="contenitore_toolBar2">
<div id="toolBar2">/*HIDDEN DIV WITH SOME STUFF INSIDE*/</div>
</div>
<div id="textBox" contenteditable="true">
<p>Lorem ipsum</p>
</div>
</div>
提前谢谢。