为什么这样也行?
$(function () {
$("#btntest").bind("click", function () {
$("div").toggle(
function(){
$(this).attr("display","none");
})
})
});