在 jquery 中进行钩子切换
我创建了一个包含以下代码的页面。我需要提醒一条消息。但这不起作用。为什么 ?
代码:
$(document).ready(function() {
$.hook('toggle');
$('#test').bind('onbeforetoggle', function(e){alert(e.type)});
$('#btnHide').click(function() {
$('#divTest').toggle();
});
});
I created a page contains the following code. There I need to alert a message. But it does not work. WHY ?
Code:
$(document).ready(function() {
$.hook('toggle');
$('#test').bind('onbeforetoggle', function(e){alert(e.type)});
$('#btnHide').click(function() {
$('#divTest').toggle();
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望有帮助
http://jsfiddle.net/TzCXC/
hope some helps
http://jsfiddle.net/TzCXC/