$("body").bind("click", function(e) {
var target = $(e.target);
if(target.closest(".photo img").length == 0) {
//点击非当前元素,需要执行的代码
}
})
$("body").bind("click", function(e) {
var target = $(e.target);
if(target.closest(".photo img").length == 0) {
//点击非当前元素,需要执行的代码
}
})