1. 程式人生 > >jQuery獲取並遍歷Dom

jQuery獲取並遍歷Dom

如何用jQuery實現遍歷指定Dom,以便實現特定功能?

$("#dc_warning .normal_status").each(function(){
        var w_id = $(this).attr("id");
        alert(w_id);
});

以上.each()實現遍歷#dc_warning .normal_status 的Dom,並彈出Dom的id...