I have the below html structure, i want to find the inner html of first div with class as \"popcontent\" using jQuery
8条回答 抹茶落季 (楼主) 2020-12-14 05:52 $("div.popContent:first").html() should give you the first div's content ("1" in this case) 0 讨论(0) 查看其它8个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
$("div.popContent:first").html()
should give you the first div's content ("1" in this case)