-1

我有这个 html,我在发布后返回:http: //jsfiddle.net/thiswolf/H8HTX/

我只对 div 中的内容感兴趣,class one我正在尝试使用

success: function(html){

               var ifilter = jQuery(html).find('.one').html();
               alert(ifilter);

  }

使用此代码,我无法严格获取第一类 div 下的内容。

4

1 回答 1

0

首先add the html received in response to DOM,然后应用过滤器。过滤器不适用于字符串。通过 find 方法得到需要的 html 后,将添加的 html 删除。

success: function(html){             
           $('#someelementid').html(html); 
           var ifilter = $('#someelementid').find('.one').html();
           alert(ifilter);
           $('#someelementid').html(''); 
}
于 2012-09-15T13:37:50.400 回答