亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? engine.js

?? DWR is the way for AJAX implementation
?? JS
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
/* * Copyright 2005 Joe Walker * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//** * Declare an object to which we can add real functions. */if (dwr == null) var dwr = {};if (dwr.engine == null) dwr.engine = {};if (DWREngine == null) var DWREngine = dwr.engine;/** * Set an alternative error handler from the default alert box. * @see getahead.org/dwr/browser/engine/errors */dwr.engine.setErrorHandler = function(handler) {  dwr.engine._errorHandler = handler;};/** * Set an alternative warning handler from the default alert box. * @see getahead.org/dwr/browser/engine/errors */dwr.engine.setWarningHandler = function(handler) {  dwr.engine._warningHandler = handler;};/** * Setter for the text/html handler - what happens if a DWR request gets an HTML * reply rather than the expected Javascript. Often due to login timeout */dwr.engine.setTextHtmlHandler = function(handler) {  dwr.engine._textHtmlHandler = handler;};/** * Set a default timeout value for all calls. 0 (the default) turns timeouts off. * @see getahead.org/dwr/browser/engine/errors */dwr.engine.setTimeout = function(timeout) {  dwr.engine._timeout = timeout;};/** * The Pre-Hook is called before any DWR remoting is done. * @see getahead.org/dwr/browser/engine/hooks */dwr.engine.setPreHook = function(handler) {  dwr.engine._preHook = handler;};/** * The Post-Hook is called after any DWR remoting is done. * @see getahead.org/dwr/browser/engine/hooks */dwr.engine.setPostHook = function(handler) {  dwr.engine._postHook = handler;};/** * Custom headers for all DWR calls * @see getahead.org/dwr/???? */dwr.engine.setHeaders = function(headers) {  dwr.engine._headers = headers;};/** * Custom parameters for all DWR calls * @see getahead.org/dwr/???? */dwr.engine.setParameters = function(parameters) {  dwr.engine._parameters = parameters;};/** XHR remoting type constant. See dwr.engine.set[Rpc|Poll]Type() */dwr.engine.XMLHttpRequest = 1;/** XHR remoting type constant. See dwr.engine.set[Rpc|Poll]Type() */dwr.engine.IFrame = 2;/** XHR remoting type constant. See dwr.engine.setRpcType() */dwr.engine.ScriptTag = 3;/** * Set the preferred remoting type. * @param newType One of dwr.engine.XMLHttpRequest or dwr.engine.IFrame or dwr.engine.ScriptTag * @see getahead.org/dwr/browser/engine/options */dwr.engine.setRpcType = function(newType) {  if (newType != dwr.engine.XMLHttpRequest && newType != dwr.engine.IFrame && newType != dwr.engine.ScriptTag) {    dwr.engine._handleError(null, { name:"dwr.engine.invalidRpcType", message:"RpcType must be one of dwr.engine.XMLHttpRequest or dwr.engine.IFrame or dwr.engine.ScriptTag" });    return;  }  dwr.engine._rpcType = newType;};/** * Which HTTP method do we use to send results? Must be one of "GET" or "POST". * @see getahead.org/dwr/browser/engine/options */dwr.engine.setHttpMethod = function(httpMethod) {  if (httpMethod != "GET" && httpMethod != "POST") {    dwr.engine._handleError(null, { name:"dwr.engine.invalidHttpMethod", message:"Remoting method must be one of GET or POST" });    return;  }  dwr.engine._httpMethod = httpMethod;};/** * Ensure that remote calls happen in the order in which they were sent? (Default: false) * @see getahead.org/dwr/browser/engine/ordering */dwr.engine.setOrdered = function(ordered) {  dwr.engine._ordered = ordered;};/** * Do we ask the XHR object to be asynchronous? (Default: true) * @see getahead.org/dwr/browser/engine/options */dwr.engine.setAsync = function(async) {  dwr.engine._async = async;};/** * Does DWR poll the server for updates? (Default: false) * @see getahead.org/dwr/browser/engine/options */dwr.engine.setActiveReverseAjax = function(activeReverseAjax) {  if (activeReverseAjax) {    // Bail if we are already started    if (dwr.engine._activeReverseAjax) return;    dwr.engine._activeReverseAjax = true;    dwr.engine._poll();  }  else {    // Can we cancel an existing request?    if (dwr.engine._activeReverseAjax && dwr.engine._pollReq) dwr.engine._pollReq.abort();    dwr.engine._activeReverseAjax = false;  }  // TODO: in iframe mode, if we start, stop, start then the second start may  // well kick off a second iframe while the first is still about to return  // we should cope with this but we don't};/** * The default message handler. * @see getahead.org/dwr/browser/engine/errors */dwr.engine.defaultErrorHandler = function(message, ex) {  dwr.engine._debug("Error: " + ex.name + ", " + ex.message, true);  if (message == null || message == "") alert("A server error has occured.");  // Ignore NS_ERROR_NOT_AVAILABLE if Mozilla is being narky  else if (message.indexOf("0x80040111") != -1) dwr.engine._debug(message);  else alert(message);};/** * The default warning handler. * @see getahead.org/dwr/browser/engine/errors */dwr.engine.defaultWarningHandler = function(message, ex) {  dwr.engine._debug(message);};/** * For reduced latency you can group several remote calls together using a batch. * @see getahead.org/dwr/browser/engine/batch */dwr.engine.beginBatch = function() {  if (dwr.engine._batch) {    dwr.engine._handleError(null, { name:"dwr.engine.batchBegun", message:"Batch already begun" });    return;  }  dwr.engine._batch = dwr.engine._createBatch();};/** * Finished grouping a set of remote calls together. Go and execute them all. * @see getahead.org/dwr/browser/engine/batch */dwr.engine.endBatch = function(options) {  var batch = dwr.engine._batch;  if (batch == null) {    dwr.engine._handleError(null, { name:"dwr.engine.batchNotBegun", message:"No batch in progress" });    return;  }  dwr.engine._batch = null;  if (batch.map.callCount == 0) return;  // The hooks need to be merged carefully to preserve ordering  if (options) dwr.engine._mergeBatch(batch, options);  // In ordered mode, we don't send unless the list of sent items is empty  if (dwr.engine._ordered && dwr.engine._batchesLength != 0) {    dwr.engine._batchQueue[dwr.engine._batchQueue.length] = batch;  }  else {    dwr.engine._sendData(batch);  }};/** @deprecated */dwr.engine.setPollMethod = function(type) { dwr.engine.setPollType(type); };dwr.engine.setMethod = function(type) { dwr.engine.setRpcType(type); };dwr.engine.setVerb = function(verb) { dwr.engine.setHttpMethod(verb); };dwr.engine.setPollType = function() { dwr.engine._debug("Manually setting the Poll Type is not supported"); };//==============================================================================// Only private stuff below here//==============================================================================/** The original page id sent from the server */dwr.engine._origScriptSessionId = "${scriptSessionId}";/** The session cookie name */dwr.engine._sessionCookieName = "${sessionCookieName}"; // JSESSIONID/** Is GET enabled for the benefit of Safari? */dwr.engine._allowGetForSafariButMakeForgeryEasier = "${allowGetForSafariButMakeForgeryEasier}";/** The script prefix to strip in the case of scriptTagProtection. */dwr.engine._scriptTagProtection = "${scriptTagProtection}";/** The default path to the DWR servlet */dwr.engine._defaultPath = "${defaultPath}";/** Do we use XHR for reverse ajax because we are not streaming? */dwr.engine._pollWithXhr = "${pollWithXhr}";/** The read page id that we calculate */dwr.engine._scriptSessionId = null;/** The function that we use to fetch/calculate a session id */dwr.engine._getScriptSessionId = function() {  if (dwr.engine._scriptSessionId == null) {    dwr.engine._scriptSessionId = dwr.engine._origScriptSessionId + Math.floor(Math.random() * 1000);  }  return dwr.engine._scriptSessionId;};/** A function to call if something fails. */dwr.engine._errorHandler = dwr.engine.defaultErrorHandler;/** For debugging when something unexplained happens. */dwr.engine._warningHandler = dwr.engine.defaultWarningHandler;/** A function to be called before requests are marshalled. Can be null. */dwr.engine._preHook = null;/** A function to be called after replies are received. Can be null. */dwr.engine._postHook = null;/** An map of the batches that we have sent and are awaiting a reply on. */dwr.engine._batches = {};/** A count of the number of outstanding batches. Should be == to _batches.length unless prototype has messed things up */dwr.engine._batchesLength = 0;/** In ordered mode, the array of batches waiting to be sent */dwr.engine._batchQueue = [];/** What is the default rpc type */dwr.engine._rpcType = dwr.engine.XMLHttpRequest;/** What is the default remoting method (ie GET or POST) */dwr.engine._httpMethod = "POST";/** Do we attempt to ensure that calls happen in the order in which they were sent? */dwr.engine._ordered = false;/** Do we make the calls async? */dwr.engine._async = true;/** The current batch (if we are in batch mode) */dwr.engine._batch = null;/** The global timeout */dwr.engine._timeout = 0;/** ActiveX objects to use when we want to convert an xml string into a DOM object. */dwr.engine._DOMDocument = ["Msxml2.DOMDocument.6.0", "Msxml2.DOMDocument.5.0", "Msxml2.DOMDocument.4.0", "Msxml2.DOMDocument.3.0", "MSXML2.DOMDocument", "MSXML.DOMDocument", "Microsoft.XMLDOM"];/** The ActiveX objects to use when we want to do an XMLHttpRequest call. */dwr.engine._XMLHTTP = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.5.0", "Msxml2.XMLHTTP.4.0", "MSXML2.XMLHTTP.3.0", "MSXML2.XMLHTTP", "Microsoft.XMLHTTP"];/** Are we doing comet or polling? */dwr.engine._activeReverseAjax = false;/** The iframe that we are using to poll */dwr.engine._outstandingIFrames = [];/** The xhr object that we are using to poll */dwr.engine._pollReq = null;/** How many milliseconds between internal comet polls */dwr.engine._pollCometInterval = 200;/** How many times have we re-tried to poll? */dwr.engine._pollRetries = 0;dwr.engine._maxPollRetries = 0;/** Do we do a document.reload if we get a text/html reply? */dwr.engine._textHtmlHandler = null;/** If you wish to send custom headers with every request */dwr.engine._headers = null;/** If you wish to send extra custom request parameters with each request */dwr.engine._parameters = null;/** Undocumented interceptors - do not use */dwr.engine._postSeperator = "\n";dwr.engine._defaultInterceptor = function(data) { return data; };dwr.engine._urlRewriteHandler = dwr.engine._defaultInterceptor;dwr.engine._contentRewriteHandler = dwr.engine._defaultInterceptor;dwr.engine._replyRewriteHandler = dwr.engine._defaultInterceptor;/** Batch ids allow us to know which batch the server is answering */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩成人综合| 欧美群妇大交群的观看方式 | 亚洲嫩草精品久久| 欧美一区二区美女| 色综合久久综合网欧美综合网 | 99精品桃花视频在线观看| 日本不卡在线视频| 亚洲另类一区二区| 亚洲国产精品传媒在线观看| 欧美一级欧美三级在线观看| 色88888久久久久久影院按摩| 国产激情偷乱视频一区二区三区| 婷婷国产在线综合| 亚洲精品中文字幕乱码三区| 中文字幕第一区综合| 精品国产免费一区二区三区四区 | 成人少妇影院yyyy| 狠狠色狠狠色综合| 热久久免费视频| 亚洲午夜av在线| 一区二区三区在线看| 国产精品乱码久久久久久| 精品久久久久久久久久久久久久久久久| 欧美偷拍一区二区| 91久久奴性调教| 99久久婷婷国产精品综合| 国产一区二区不卡| 国产一二精品视频| 国产曰批免费观看久久久| 麻豆成人91精品二区三区| 日本不卡一二三| 蜜桃视频在线观看一区| 日本不卡在线视频| 蜜臀av在线播放一区二区三区| 视频一区二区三区中文字幕| 一区二区三区在线免费| 亚洲午夜私人影院| 亚洲成人在线观看视频| 天天爽夜夜爽夜夜爽精品视频| 亚洲国产欧美一区二区三区丁香婷| 亚洲精品你懂的| 亚洲第一久久影院| 天堂精品中文字幕在线| 日本美女视频一区二区| 久久国产精品第一页| 激情文学综合丁香| 国产成人精品免费在线| jlzzjlzz国产精品久久| 91老师片黄在线观看| 在线观看网站黄不卡| 欧美日韩一区在线| 91精品视频网| 日韩视频一区二区在线观看| 欧美va亚洲va在线观看蝴蝶网| 精品国产在天天线2019| 欧美国产日韩一二三区| 亚洲欧美视频在线观看| 亚洲国产综合人成综合网站| 丁香另类激情小说| 91小视频在线免费看| 欧美优质美女网站| 日韩美女视频在线| 国产精品午夜免费| 亚洲国产视频一区二区| 蜜桃在线一区二区三区| 成人午夜电影小说| 在线免费不卡视频| 欧美www视频| 1区2区3区国产精品| 五月天婷婷综合| 国产精品18久久久久久久网站| 波波电影院一区二区三区| 欧亚一区二区三区| 精品久久人人做人人爽| 亚洲免费资源在线播放| 日本中文字幕一区二区视频| 国产不卡视频在线观看| 欧美三级在线看| 欧美精品一区二| 一区二区三区影院| 国产一区二区毛片| 欧美日韩一卡二卡| 国产欧美一区二区精品性| 亚洲成人先锋电影| 成人精品电影在线观看| 欧美一级在线观看| 亚洲欧洲精品一区二区精品久久久| 日韩黄色小视频| 91视频精品在这里| 精品国产伦一区二区三区观看方式| 亚洲精品日产精品乱码不卡| 国产一区二区视频在线| 欧美日韩国产高清一区二区三区| 国产午夜精品福利| 日韩不卡一区二区| 色老头久久综合| 久久精品日韩一区二区三区| 午夜欧美在线一二页| av电影天堂一区二区在线观看| 日韩欧美一二三四区| 亚洲一区二区三区爽爽爽爽爽| 国产高清不卡一区| 日韩欧美一区二区三区在线| 亚洲黄色免费网站| 波多野结衣欧美| 久久精品亚洲精品国产欧美kt∨ | 精品国产乱码久久久久久蜜臀| 一区二区不卡在线播放| 成人不卡免费av| 久久精品人人做人人爽97| 五月婷婷色综合| 欧美专区日韩专区| 中文字幕一区二区三区在线播放| 极品尤物av久久免费看| 中文字幕一区免费在线观看| 国产一本一道久久香蕉| 日韩欧美一区在线观看| 视频一区二区中文字幕| 欧美日韩精品免费观看视频| 亚洲美女偷拍久久| 色综合天天综合网国产成人综合天| 国产视频亚洲色图| 国产乱对白刺激视频不卡| 欧美tickle裸体挠脚心vk| 免费在线观看视频一区| 欧美精品在线观看播放| 亚洲电影视频在线| 欧美日韩一区二区欧美激情| 亚洲一二三四区| 欧美伊人精品成人久久综合97| 亚洲日本青草视频在线怡红院| 成人久久久精品乱码一区二区三区| 久久久.com| 成人av综合一区| 中文字幕日韩av资源站| 99久久免费国产| 亚洲精品久久嫩草网站秘色| 色婷婷综合久色| 亚洲一级二级三级在线免费观看| 在线观看免费成人| 石原莉奈在线亚洲三区| 欧美一级在线免费| 国产一区在线观看视频| 国产视频一区二区在线观看| 成人av电影在线观看| 亚洲色图.com| 欧美日韩国产大片| 美女在线视频一区| 久久久国际精品| 成人app在线观看| 亚洲综合在线观看视频| 欧美日韩高清影院| 精品一区二区三区视频| 国产丝袜美腿一区二区三区| 99久久精品免费看| 亚洲成人免费看| 欧美mv和日韩mv国产网站| 国产成人免费在线视频| 亚洲精品精品亚洲| 欧美一区二区在线播放| 国产精品一区久久久久| 自拍偷拍国产亚洲| 91.麻豆视频| 国产盗摄一区二区| 亚洲最快最全在线视频| 精品日韩一区二区三区免费视频| 成人免费高清在线| 亚洲一区电影777| 精品国产乱码久久久久久影片| av毛片久久久久**hd| 亚洲va中文字幕| 国产午夜精品福利| 欧美日韩一级黄| 国产成人精品亚洲777人妖| 亚洲成人先锋电影| 国产日产欧美一区| 欧美日本韩国一区| 国产成人精品影视| 日韩av一区二| 亚洲欧美在线视频| 日韩一区二区三区在线| 91色综合久久久久婷婷| 裸体在线国模精品偷拍| 亚洲日本在线a| 久久久精品国产免大香伊| 欧美三级资源在线| 成人黄色一级视频| 久色婷婷小香蕉久久| 国产精品家庭影院| 精品福利一区二区三区| 欧美调教femdomvk| 国产**成人网毛片九色| 日韩av高清在线观看| 一区二区中文视频| 久久久久综合网| 欧美久久久久免费| 色婷婷av一区二区三区gif| 国产一区二区三区电影在线观看| 亚洲va欧美va国产va天堂影院| 国产精品久久精品日日|