|
|
|
อยากได้แนวการทำหน้าอ่านการ์ตูน แล้วมีให้ปรับโหมดอ่านทีละหน้า กับ อ่านรวดเดียว |
|
|
|
|
|
|
|
เอาแบบง่ายๆนะครับ
Code
<script type="text/javascript">
$(document).ready(function () {
$('#pageselect').change(function () {
$.ajax({
type: 'post',
data: {page: $(this).val()},
url: 'chagepage.php',
success: function (data) {
$('#content').html(data);
}
});
});
});
</script>
pageselect = id ของ tag ที่รับค่ามา
ีurl = หน้าที่ส่งค่าออกไป
content = id ของ tag ที่จะแสดงผล
หน้า chagepage.php ก็รับค่า post จาก data: {page: $(this).val()} มาตรวจสอบค่า value
ก็ใช้ if else ธรรมดา แล้ว echo ผลลัพท์
|
|
|
|
|
Date :
2017-01-12 21:43:52 |
By :
tenten |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|