$('body').not($("#dropzone")).bind('click', function() {
//$("#dropzone").slideUp("normal");
});
$('body').bind('click', function (e) {
var o = e.target;
if($(o).closest('#dropzone').length==0)//不是特定区域
$("#dropzone").slideUp("normal");
});
在外层加点击事件,判断target为某一个div,直接return
$("body").bind("click", function(e){
if(e.target == $("#dropzone")[0]){
return
} else {
alert("get!");
}
})