i am trying to find the DIVs id which is having the Class that contains the class field_div_style using JQuery.
i have tried it with
alert($("#fb_contentarea_col2_dropingarea div").find("class","field_div_style")); -- alerts object
alert($("#fb_contentarea_col2_dropingarea div").find("class","field_div_style").attr("id")); -- alerts undefined
how to do so??
以上就是FInding the Div's properties containing a specified class in JQUery的详细内容,更多请关注web前端其它相关文章!