ajax ページング php ajax ページング java ajax ページング asp.net ajax ページング jquery ajax ページング jsp ajax 更新なしページング asp ajax ページング ajax ページングの問題 ajax ページングの実装 Ajax jsp ページング
ajax ページングが使用されますデータはクライアント側で分析され、処理のために php ファイルに送信され、処理のためにクライアントに返されます。ここでは 3 つの js ファイルと 1 つの php ファイルが使用されます: cookie.js page.js。 proptype.js result.php ファイルで、各ファイルの内容を 1 つずつ見てみましょう。
まず cookie.js コードを見てみましょう:
// JavaScript Document
function SetCookie (name, value, x_expires, x_path, x_domain, x_secure) { //Cookie 値を設定します function//alert(name)
var argv = SetCookie.arguments;
//alert(this.argv);
var argc = SetCookie.arguments.length;
var 期限切れ= (argc > 2) ? x_expires : null;
var path = (argc > 3) ? x_path : null;
var domain = (argc > 4) ? document.cookie = name + "= + エスケープ (値) +
((期限切れ == null) ? "" : ("; 期限切れ = +expires.toGMTString())) +
((パス = = null) ? "" : ("; パス= " + パス)) +
((ドメイン == null) ? "" : ("; ドメイン = = + ドメイン)) +
((セキュア == true) ? "; セキュア" : "");
}
function GetCookie (name) { //指定された名前の cookie 値関数を読み取ります
//alert(document.cookie)
var arg = name + "=;
var alen = arg.length;
var clen = document. cookie.length;
var i = 0;
while (i < clen)
{
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j );
i = document.cookie.indexOf(";", i);
if (i == -1)
}
return null ;
}
function getCookieVal (offset) var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length
return unescape(document .cookie.substring(offset, endstr));
}
function DeleteCookie (name) { //Cookie の値を削除 function
var exp = new Date();
exp.setTime (exp.getTime() - 1);
var cval = GetCookie (name);
document. cookie = name + "=" + cval + ";expires=" + exp.toGMTString();
}
このファイルは主に Cookie を処理するために使用されます
http://www.bkjia.com/PHPjc/445077.html
true