clone() jQuery การคัดลอก Elements ที่ต้องการ
บทความวันที่ 20 พฤศจิกายน 2555
clone() คือ คำสั่งของ jQuery มีไว้สำหรับการคัดลอก (Copy) Elements ที่ต้องการ สำหรับการสร้าง แทรก หรือคัดลอก Elements ในรูปแบบต่าง ๆ ที่เหมือนกัน
ภาพรวมของ clone()
1. คำสั่ง clone() มีไว้สำหรับการคัดลอก Elements ที่ต้องการ
2. ใช้คำสั่ง $('[Target_Element]').clone() เพื่อคัดลอก Elements ที่ต้องการ
3. สามารถประยุกต์ใช้รวมกับคำสั่งต่าง ๆ เช่น prependTo(), appendTo()
ตัวอย่างโปรแกรม
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>amplysoft.com</title>
<script type="text/javascript" src="jquery.min.js"></script>
</head>
<body>
<b>Hello </b>
<p>AmplySoft</p>
<script type="text/javascript">
$(document).ready(function(){
$('b').clone().prependTo('p');
});
</script>
</body>
</html>
ผลลัพธ์
คำค้นหา clone() jQuery, รับเขียนเว็บ, รับทำเว็บ, เรียนเขียนโปรแกรม