在这种情况下,我不确定如何定位我想要的元素:
var $div = $(".row-container").filter(function() {
return $(this).data("i") == product_id;
// where value == product id to find
});
现在,within$div
是一个具有'price-row'
我想要的类的元素。$div.hasClass('price-row')
只返回真或假值。