能否帮忙看一下问题出在哪里了啊?谢谢
$(function () {
$("#btntest").bind("click", function () {
$("div").toggle(function(){
$(this).attr("display","none");
},function(){
$(this).attr("display");
})
})
});