jQuery小白求教~急等!
表单中,用clone()函数,点击按钮,复制第一行的提示、input、按钮等。$(document).ready(function(){$("#item_add").cl...
表单中,用clone()函数,点击按钮,复制第一行的提示、input、按钮等。
$(document).ready(function(){
$("#item_add").click(function() {
if($(".theme_item:first").is(":visible")) {
$(".theme_item:first").clone().children('input').val('').parent().insertAfter(".theme_item:last");
}else {
$(".theme_item:first").show();
}
});
但是要是把.children('input').val('').parent()这些遍历删除,只保留$(".theme_item:first").clone().insertAfter(".theme_item:last");运行效果一模一样~求高手给解答下为啥?那些遍历岂不没有用? 展开
$(document).ready(function(){
$("#item_add").click(function() {
if($(".theme_item:first").is(":visible")) {
$(".theme_item:first").clone().children('input').val('').parent().insertAfter(".theme_item:last");
}else {
$(".theme_item:first").show();
}
});
但是要是把.children('input').val('').parent()这些遍历删除,只保留$(".theme_item:first").clone().insertAfter(".theme_item:last");运行效果一模一样~求高手给解答下为啥?那些遍历岂不没有用? 展开
1个回答
展开全部
.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()出来的也是带值的
$(".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()出来的也是带值的
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询