jQuery가 표시된 요소를 판단하고 표시 요소 데이터를 가져옵니다

697 단어 jqueryshowvisible
//표시 요소의 데이터 가져오기
jQuery(this).find("a:visible").attr("href");

//다중 태그 선택기
jQuery("#slider").click(function(){
			var rel = jQuery(".nivo-controlNav a.active").attr("rel");
			location.href = jQuery(this).find("a").eq(rel).attr("href");
		});

//         
$(document).ready(function(){
   if($("#mydiv").is(":visible")==false){ 
      alert("Hidden"); 
   }else{ 
      alert("Display"); }
});
            div 、input 、button          。

좋은 웹페이지 즐겨찾기