|
|
|
สอบถามเรื่อง Jquery ที่ใช้โหลดข้อมูลครับ แบบเว็บพันทิป |
|
|
|
|
|
|
|
เอาไปปรับดู ไปก๊อปเค้ามาอีกที
Code (PHP)
$(document).ready(
function()
{
$contentLoadTriggered = false;
$("#mainDiv").scroll(
function()
{
if($("#mainDiv").scrollTop() >= ($("#wrapperDiv").height() - // เช็กการเลื่อนลงถึงตำแหน่งที่ต้องการ
$("#mainDiv").height()) &&
$contentLoadTriggered == false)
$contentLoadTriggered == false)
{
$contentLoadTriggered = true;
$.ajax(
{
type: "POST",
url: "xxx.php", // ไปเอาข้อมูล
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
cache: false,
success: function (msg)
{
$("#wrapperDiv").append(msg.d); // มาใส่ตำแหน่งที่ต้องการ
$contentLoadTriggered = false;
},
error: function (x, e)
{
alert("The call to the server side failed. " +
x.responseText);
}
}
);
}
}
);
}
);
|
|
|
|
|
Date :
2013-06-11 15:06:52 |
By :
randOmizE |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับ จะลองดู
|
|
|
|
|
Date :
2013-06-11 16:04:07 |
By :
pumin99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|