|
|
|
สอบถามวิธีทำปฏิทินในรูปแบบนี้ค่ะ คือสามารถเลือกเดือนได้ และเลือกเฉพาะเจาะจงวันได้ค่ะ |
|
|
|
|
|
|
|
ประยุกต์ใช้เอานะครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script language="JavaScript">
$(document).ready(function(e) {
$( "#datepicker" ).datepicker({
beforeShowDay: function(date){ return [date.getDay() == 6,""]},
showOtherMonths: true,
selectOtherMonths: true
});
});
</script>
<style>
body{
font-family:Tahoma, Geneva, sans-serif;
font-size:14px;
}
</style>
<body>
<p>Date: <input type="text" id="datepicker" /></p>
</body>
</html>
|
|
|
|
|
Date :
2013-08-13 14:12:10 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ
|
|
|
|
|
Date :
2013-08-14 13:44:04 |
By :
กวาง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนถามต่อยอดค่ะ
ถ้าสมมติว่ามีเงื่อนไข ที่ให้แสดงเฉพาะวันจันทร์และวันพฤหัสบดี เฉพาะช่วงเดือนสิงหาคม 2013 ถึง ตุลาคม 2013 เท่านั้นละค่ะ
ควรจะเขียนอย่างไรอะค่ะ แล้วถ้าเป็นเดือนพฤศจิกายน หรือวันอื่นๆ ที่ไม่มีในเงื่อนไข วันที่ก็จะเป็นสีเทา ไม่สามารถคลิกเลือกวันได้อะค่ะ
โค๊ดจากด้าบนค่ะ
<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script language="JavaScript">
$(document).ready(function(e) {
$( "#datepicker" ).datepicker({
beforeShowDay: function(date){ return [(date.getDay() == 1 || date.getDay() == 4), ""]; },
showOtherMonths: true,
selectOtherMonths: true
});
});
</script>
<body>
<p>Date: <input type="text" id="datepicker" /></p>
ขอบคุณค่ะ
|
|
|
|
|
Date :
2013-08-14 15:08:26 |
By :
กวาง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|