jquery clone()函数讲解

本文详细介绍了jQuery clone()函数的使用方法,包括如何复制HTML元素和事件处理器。通过两个实例展示了如何复制HTML代码和按钮点击事件,帮助开发者更好地理解和运用jQuery的克隆功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Jqueryclone()实例

Jquery clone() 函数被用来创建匹配元素的一份拷贝。其也支持比尔参数用来指示是否拷贝匹配元素的数据和事件处理器。

 

1 拷贝html 元素

 

例如: 我们将拷贝以下的html 代码

<divclass="smallBox">
        I'm a small box
        <divclass="smallInnerBox">I'm a small small inner box</div>
</div>

使用clone() 来创建以上元素的一份拷贝,并把拷贝元素放在包含一个类名为”smallBox”的div 标签后。

$('.smallBox').clone().insertAfter(".smallBox");

结果如下:

 

<divclass="smallBox">
        I'm a small box
        <divclass="smallInnerBox">I'm a small small inner box</div>
</div>
  <divclass="smallBox">
        I'm a small box
        <divclass="smallInnerBox">I'm a small small inner box</div>
</div>

2 拷贝事件处理器(event handler)

以下实例将会拷贝Button的click 事件,你将会拷贝id为cloneButton1的button。

 

<buttonid="cloneButton1">clone()</button>
 
<scripttype="text/javascript">
    $("#cloneButton1").click(function () {
 
          $('.smallBox').clone().insertAfter(".smallBox");
 
    });
</script>

 

如果你使用默认的clone()和clone(false)方法,此方法将拷贝button元素,但是不拷贝click()事件处理器。

$('#cloneButton1').clone().insertAfter("#cloneButton1");

为了拷贝匹配元素的click()事件,你应该使用clone(true)来进行拷贝。

 

$('#cloneButton1').clone(true).insertAfter("#cloneButton1");

具体代码如下:

 

<html>
	<head>
		<script type="text/javascript" src="../jquery-1.11.1.min.js"></script>
		<style type="text/css">
			.smallBox{
				padding:8px;
				border:1px solid blue;
				margin:8px;
				
				}
				.smallInnerBox{
					padding:8px;
					border:1px solid green;
					margin:8px;
					}
			
			</style>
	</head>
	<body>
		<h1>jquery clone() example</h1>
		<div class="smallBox">
			I am a small box
			<div class="smallInnerBox">i am small small inner box</div> 
		
	</body>
	<button id="cloneButton1">clone()</button>
	<button id="cloneButton2">clone() button (default)</button>
	<button id="cloneButton3">clone(true) button</button>
	<button id="reset">reset</button>
	<script type="text/javascript">
		$("#reset").click(function(){
			
			location.reload();
			});
		$("#cloneButton1").click(function(){
			$('.smallBox').clone().insertAfter(".smallBox");
			
			});
			
			$("#cloneButton2").click(function(){
				$('#cloneButton1').clone(false).insertAfter("#cloneButton1");
				});
				
				$("#cloneButton3").click(function(){
					$('#cloneButton1').clone(true).insertAfter("#cloneButton1");
					
					
					})
		</script>
</html>
效果:


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值