我正在尝试编写一个可以在 display:none 模式下关闭 DIV 的盲函数。看不见的 DIV 位于更宽的 DIV 内,包含盲触发器。
这:
$(document).ready(function () {
$("#toggle_blind").click(function () {
$(this).toggle("fast");
});
});
好吧,这会使按钮失明。如何将 DIV 添加到 $this?就像是:
<div id="blind" class="wider_div">
<h3 id="closeButton">Close</h3>
<div style="display:none;" id="closeThis">
<p>some text</p>
</div>
</div>
如何使 H3 上的关闭按钮在每次点击时关闭/打开 CloseButton DIV?
谢谢!