为了判断元素是否显示,jquery中用is()来实现,
$(function(){
$(obj).bind('click',function(){
if(obj.is(:visible)){
//编写的代码
}else{
}
})