jQuery小白求教~急等!
发布网友
发布时间:2022-04-23 22:38
我来回答
共1个回答
热心网友
时间:2022-04-24 00:07
.children('input').val('').parent()的作用是清空值
$(".theme_item:first").clone()//选中A节点
$(".theme_item:first").clone().children('input') //选中了B节点
$(".theme_item:first").clone().children('input').val("")//清空了B节点的值
$(".theme_item:first").clone().children('input').val('').parent()//重新选中A节点
如果不清掉,$(".theme_item:first")下的input有值.clone()出来的也是带值的