ขอถามเรื่องการใช้ function jquery รบกวนช่วยแนะนำหน่อยครับ
ลองดูตัวอย่างนี้นะครับ
Code (PHP)
<!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>TEST</title>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
<script language="javascript" type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$('#slc').on("change",'','', function(e){
//$.ajax({ url: '', type: GET, data: {action: getdata, value: 1}}).done(function(msg){ $('.report').html( msg ).slideToggle();});
$('.data').html( 'New Message' ); $('.report').slideToggle(); // บันทัดนี้สำหรับเทสต์ ควรใช้ $.ajax บันทัดบน
});
$('#closePage').on('click', '', '', function(){ $('.report').slideToggle(); });
});
</script></head>
<body>
<div class="main">
<div class="page"><select id="slc">
<option value="">กรุณาเลือกหน้า</option>
<option value="1">หน้า 1</option>
</select>
</div>
<div class="report" style="display:none">
<table><tr><td>
<div class="data" >เนื้อหาหน้าที่ เปลี่ยนตาม select</div>
<center><button type="button" id="closePage">X</button></center>
</td></tr></table>
</div>
</div>
</body>
</html>
Date :
2014-08-13 08:28:14
By :
Chaidhanan
ขอบคุณมากๆครับ จะลองดูครับ
Date :
2014-08-13 20:28:25
By :
_Emo_
Load balance : Server 03