关于toggle事件
$(function(){
$(#btntest).bind("click",function(){
$("div").toggle(function(){
$(this).hide();
},function(){$(this).show();});
})
});
点击button,div没有反应,请问这段代码错在哪里?
$(function(){
$(#btntest).bind("click",function(){
$("div").toggle(function(){
$(this).hide();
},function(){$(this).show();});
})
});
点击button,div没有反应,请问这段代码错在哪里?
2016-03-30
举报