show() และ hide() jQuery การแสดง และการซ้อน Elements
บทความวันที่ 14 พฤศจิกายน 2555
show() และ hide() คือ คำสั่งของ jQuery ในหมวดของ Effects มีไว้สำหรับการแสดง (Show) และการซ้อน (Hide) Elements ต่าง ๆ ที่ต้องการ
ภาพรวมของ show() และ hide()
1. ใช้คำสั่ง $('[Element_Target]').show() สำหรับการแสดง Elements
2. ใช้คำสั่ง $('[Element_Target]').hide() สำหรับการซ้อน Elements
3. ทั้ง 2 คำสั่งมี Parameter ที่สำคัญคือ duration (ระยะเวลา), easing (ข้อมูลที่ใช้สำหรับการสื่อสาร) และ callback (Function สำหรับการตอบกลับหลังการประมวลเสร็จ)
ตัวอย่างโปรแกรม
<!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" />
<script type="text/javascript" src="jquery.min.js"></script>
<title>amplysoft.com</title>
</head>
<body>
<input type='button' value='show' id='show' />
<input type='button' value='hide' id='hide' />
<p>
Hello, AmplySoft
</p>
<script type="text/javascript">
$(document).ready(function(){
$('#show').click(function(){
$('p').show();
});
$('#hide').click(function(){
$('p').hide();
});
});
</script>
</body>
</html>
ผลลัพธ์
คำค้นหา show() และ hide() jQuery, รับทำเว็บ, รับเขียนเว็บ, เรียนเขียนโปรแกรม