// 获取显示元素的数据
- 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 等元素的显示与隐藏。