JavaScript查找第一个内容为空的html元素时间:2022-06-02 18:56:58使用jQuery的:empty选择器很简单就实现: $("p:empty:first").text("hello world"); 也可以写成: $("p:empty").first().text('hello world');