提交
//獲取瀏覽器頁面可見高度和寬度
var _pageheight = document.documentelement.clientheight,
_pagewidth = document.documentelement.clientwidth;
//計算loading框距離頂部和左部的距離(loading框的寬度為215px,高度為61px)
var _loadingtop = _pageheight > 61 ? (_pageheight - 61) / 2 : 0,
_loadingleft = _pagewidth > 215 ? (_pagewidth - 215) / 2 : 0;
//在頁面未載入完畢之前顯示的loading html自定義內容
var _loadinghtml = '頁面載入中,請等待...
';
//呈現loading效果
document.write(_loadinghtml);
= function () ;
//監聽載入狀態改變
document.onreadystatechange = completeloading;
//載入狀態為complete時移除loading效果
function completeloading()
}
ajax預載入顯示頁面
一下內容以freemark為模版,同時在需要該功能的同時,正常訪問的url需要當引數傳入,http localhost 89 chysoft extajax ajax loadpage.xhtml?url 需要訪問的url包含.do action xhtml 例如 http localhost 89...
登入頁面ajax請求
login.js 一 登入驗證提示資訊 提交登入資訊 sub.on click function e console.log request param json.stringify param ajax done function result else if result.code 0100 e...
ajax請求aspx頁面
首先,這麼用是不好的。最好用ashx,但也難免遇到這種需求。開發過這麼乙個系統,每天訪問量最多100,web伺服器壓力很小,完全大馬拉小車,主要壓力都在資料庫伺服器上,要做大量的統計。所以頁面直接全上伺服器控制項搞定。用到ajax的時候也懶得再寫個ashx了,直接aspx裡寫了。下面是例子 前端 1...