本文介绍了jQuery事件处理程序:div变为可见/隐藏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个div,我想让事件处理程序在可见和隐藏时侦听.你怎么做到的?
I have a div and I'd like to have an event handler listen to when it becomes visible and hidden. How do you do that?
谢谢.
推荐答案
您可以在show()
和hide()
方法中使用回调参数,如下所示:
You can use the callback parameter in the show()
and hide()
methods like this:
$('#myDiv').show(0, onDivShow);
$('#myDiv').hide(0, onDivHide);
function onDivShow() { //your code here }
function onDivHide() { //your code here }
在此处查看工作示例: http://jsfiddle.net/N7UNU/
See a working example here: http://jsfiddle.net/N7UNU/
这篇关于jQuery事件处理程序:div变为可见/隐藏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!