js在页面搜索定位某一元素的位置

  • Post author:
  • Post category:其他


       //搜索内容
    var loc = $("#unitType").val();
    //搜索内容所在元素下遍历 
    $("caption").each(function() { 
          if($(this).children().children().text()==loc){
             //定位id属性
             $(this).attr('id','test'); 
             //跳转到id位置
             window.location.hash = "#test";
             $(this).children("a").click();
          }
          //清除id
          $(this).removeAttr('id');
         });



版权声明:本文为sinaihalo原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。