|
|
|
บักทึกโดยไม่ submit แต่กด next ไปเรื่อยๆ แล้วบันทึก หน้าสุดท้าย ย้อนกลับมาแก้ไขได้ด้วย อยากได้ โค้ด กำลังมึนตึบ |
|
|
|
|
|
|
|
ลองประยุกต์ตัวนี้ไปใช้ครับ Jquery Tabs
|
|
|
|
|
Date :
2013-08-04 20:20:28 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ ajax เพิ่มด้วยก็ดึครับ
|
|
|
|
|
Date :
2013-08-04 22:01:40 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้session ดิ ผมว่าง่ายดีนะ
|
|
|
|
|
Date :
2013-08-05 10:54:34 |
By :
dagonov |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค้ดที่เคยก็อปปี้เก็บไว้จากคนในบอร์ดนี้ล่ะค่ะ
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div[for=all]").hide();
$("div#page1").show();
var prevpage,curpage;
$(".prevpage").click(function(){
prevpage = $(this).parent("div[for=all]").prev().attr("id");
curpage = $(this).parent("div[for=all]").attr("id");
$("#"+curpage).hide(400);
$("#"+prevpage).show(400);
});
$(".nextpage").click(function(){
nextpage = $(this).parent("div[for=all]").next().attr("id");
curpage = $(this).parent("div[for=all]").attr("id");
$("#"+curpage).hide(400);
$("#"+nextpage).show(400);
});
});
</script>
<form>
<div id="page1" for="all">
<legend>Page One</legend>
<br />
<input type="button" value="Next >>" class="nextpage" />
</div>
<div id="page2" for="all">
<legend>Page Two</legend>
<br />
<input type="button" value="<< Prev" class="prevpage" />
<input type="button" value="Next >>" class="nextpage" />
</div>
<div id="result" for="all">
<legend>The Last Page</legend>
<input type="button" value="<< Prev" class="prevpage" />
<input type="submit" />
</div>
</form>
|
|
|
|
|
Date :
2013-08-05 11:06:52 |
By :
survivor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับทุกความคิดเห็น แต่ผมมือใหม่หัดเขียนเว็บ เลย งงๆ อยากให้ มาแบบเป็นโค้ด ตัวอย่างอะคับ ajax ไม่รู้ ว่ามันทำงานไงอะคับ แล้ว ก็ ขอบคุณ LittleLovely มีโค้ด ตัวอย่างให้ด้วย ผมจะลองไปศึกษาดูนะคับ
|
|
|
|
|
Date :
2013-08-05 21:52:04 |
By :
komza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|