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