校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > Ajax 核心框架函數及例子

Ajax 核心框架函數及例子

熱門標簽:如何用地圖標注各分公司 辦理一個400電話多少錢 接聽電話機器人哪有 莆田防封電銷卡價格 信貸電銷機器人有用嗎 蓄意標記地圖標注 電銷機器人適用范圍 廣西ai語音電銷機器人哪家好 察縣地圖標注
核心ajax(options)函數中,包含了建立xmlhttprequest,提取數據,判斷是否回復成功等,基本滿足了日常需求。
復制代碼 代碼如下:

// A generic function for performming AJAX requests
// It takes one argument, which is an object that contains a set of options
// All of which are outline in the comments, below
function ajax( options ) {
// Load the options object with defaults, if no
// values were provided by the user
options = {
// The type of HTTP Request
type: options.type || "POST",
// The URL the request will be made to
url: options.url || "",
// How long to wait before considering the request to be a timeout
timeout: options.timeout || 5000,
// Functions to call when the request fails, succeeds,
// or completes (either fail or succeed)
onComplete: options.onComplete || function(){},
onError: options.onError || function(){},
onSuccess: options.onSuccess || function(){},
// The data type that'll be returned from the server
// the default is simply to determine what data was returned from the
// and act accordingly.
data: options.data || ""
};
// Create the request object
var xml = new XMLHttpRequest();
// Open the asynchronous POST request
//xml.open("GET", "/some/url.cgi", true);
xml.open("GET",options.url, true);
// We're going to wait for a request for 5 seconds, before giving up
var timeoutLength = 5000;
// Keep track of when the request has been succesfully completed
var requestDone = false;
// Initalize a callback which will fire 5 seconds from now, cancelling
// the request (if it has not already occurred).
setTimeout(function(){
requestDone = true;
}, timeoutLength);
// Watch for when the state of the document gets updated
xml.onreadystatechange = function(){
// Wait until the data is fully loaded,
// and make sure that the request hasn't already timed out
if ( xml.readyState == 4 !requestDone ) {
// Check to see if the request was successful
if ( httpSuccess( xml ) ) {
// Execute the success callback with the data returned from the server
options.onSuccess( httpData( xml, options.type ) );
// Otherwise, an error occurred, so execute the error callback
} else {
options.onError();
}
// Call the completion callback
options.onComplete();
// Clean up after ourselves, to avoid memory leaks
xml = null;
}
};
// Establish the connection to the server
xml.send();
// Determine the success of the HTTP response
function httpSuccess(r) {
try {
// If no server status is provided, and we're actually
// requesting a local file, then it was successful
return !r.status location.protocol == "file:" ||
// Any status in the 200 range is good
( r.status >= 200 r.status 300 ) ||
// Successful if the document has not been modified
r.status == 304 ||
// Safari returns an empty status if the file has not been modified
navigator.userAgent.indexOf("Safari") >= 0 typeof r.status == "undefined";
} catch(e){}
// If checking the status failed, then assume that the request failed too
return false;
}
// Extract the correct data from the HTTP response
function httpData(r,type) {
// Get the content-type header
var ct = r.getResponseHeader("content-type");
// If no default type was provided, determine if some
// form of XML was returned from the server
var data = !type ct ct.indexOf("xml") >= 0;
// Get the XML Document object if XML was returned from
// the server, otherwise return the text contents returned by the server
data = type == "xml" || data ? r.responseXML : r.responseText;
// If the specified type is "script", execute the returned text
// response as if it was JavaScript
if ( type == "script" )
eval.call( window, data );
// Return the response data (either an XML Document or a text string)
return data;
}
}

在同等目錄中,我們可以建立一個rss.xml文件,用這個函數來訪問。
rss.xml如下:
復制代碼 代碼如下:

titles>
title>
緣份
/title>
title>
月亮
/title>
title>
緣份月亮
/title>
/titles>

再建立一個html文檔,調用它,就能看到rss.xml中的內容就能被訪問到。
整體看看,其實真的比較簡潔和簡單。不僅是能訪問xml格式文件,html,.js格式的文件都可以調用的;
這些都可以在本地建立對應的文件,進行調用,都可以實現。
您可能感興趣的文章:
  • Ajax核心XMLHTTP組件資料
  • Javascript級聯下拉菜單以及AJAX數據驗證核心代碼
  • jquery ajax方式直接提交整個表單核心代碼
  • 解析ajax核心XMLHTTPRequest對象的創建與瀏覽器的兼容問題
  • Ajax核心技術代碼分享
  • Ajax核心XMLHttpRequest總結
  • 簡單談談AJAX核心對象

標簽:益陽 平涼 張掖 儋州 鷹潭 延邊 阿拉善盟 銅陵

巨人網絡通訊聲明:本文標題《Ajax 核心框架函數及例子》,本文關鍵詞  Ajax,核心,框架,函數,及,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Ajax 核心框架函數及例子》相關的同類信息!
  • 本頁收集關于Ajax 核心框架函數及例子的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 宜兰市| 那曲县| 措勤县| 忻城县| 射阳县| 阿合奇县| 新乡市| 象州县| 巴塘县| 贺州市| 平遥县| 凤凰县| 贞丰县| 花垣县| 外汇| 峨眉山市| 卢湾区| 连云港市| 华容县| 繁昌县| 新密市| 廉江市| 白银市| 浦东新区| 乃东县| 定襄县| 东宁县| 东源县| 诸暨市| 上栗县| 临猗县| 乌兰浩特市| 汪清县| 龙泉市| 阜康市| 芜湖市| 济阳县| 伊通| 泽州县| 宾川县| 昭觉县|