Posted in Javascript onFebruary 04, 2014
jquery判断子元素是否存在
一、判断子元素是否存在
//一级子元素 if($("#specialId>img").length==0)
if ($( "#specialId:has(img)" ).length==0)
{
//-----没有img子标记-----
}
else
{
//-------有img子标记------
}
二、选择特定id元素下的特定id子元素
$("#form" ).children( "#t" ) 如此
三、选择特定id元素下的子元素
$("ul#u>li:nth-child(2)" ) 如此
四、判断某个元素是否存在
if ($( "#myId" ).length>0)
{
//存在
}
jquery判断元素的子元素是否存在的示例代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@