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

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

?? connection-debug.js

?? 目錄樹,在腳本中可以直接調(diào)用后臺(tái)java代碼,動(dòng)態(tài)加載數(shù)據(jù)至頁面顯示.
?? JS
?? 第 1 頁 / 共 3 頁
字號(hào):
			return;		}		// If the isUpload argument is true, setForm will call createFrame to initialize		// an iframe as the form target.		//		// The argument secureURI is also required by IE in SSL environments		// where the secureURI string is a fully qualified HTTP path, used to set the source		// of the iframe, to a stub resource in the same domain.		if(isUpload){			// Create iframe in preparation for file upload.			var io = this.createFrame(secureUri?secureUri:null);			// Set form reference and file upload properties to true.			this._isFormSubmit = true;			this._isFileUpload = true;			this._formNode = oForm;			return;		}		var oElement, oName, oValue, oDisabled;		var hasSubmit = false;		// Iterate over the form elements collection to construct the		// label-value pairs.		for (var i=0; i<oForm.elements.length; i++){			oElement = oForm.elements[i];			oDisabled = oForm.elements[i].disabled;			oName = oForm.elements[i].name;			oValue = oForm.elements[i].value;			// Do not submit fields that are disabled or			// do not have a name attribute value.			if(!oDisabled && oName)			{				switch(oElement.type)				{					case 'select-one':					case 'select-multiple':						for(var j=0; j<oElement.options.length; j++){							if(oElement.options[j].selected){								if(window.ActiveXObject){									this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oElement.options[j].attributes['value'].specified?oElement.options[j].value:oElement.options[j].text) + '&';								}								else{									this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oElement.options[j].hasAttribute('value')?oElement.options[j].value:oElement.options[j].text) + '&';								}							}						}						break;					case 'radio':					case 'checkbox':						if(oElement.checked){							this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';						}						break;					case 'file':						// stub case as XMLHttpRequest will only send the file path as a string.					case undefined:						// stub case for fieldset element which returns undefined.					case 'reset':						// stub case for input type reset button.					case 'button':						// stub case for input type button elements.						break;					case 'submit':						if(hasSubmit === false){							if(this._hasSubmitListener && this._submitElementValue){								this._sFormData += this._submitElementValue + '&';							}							else{								this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';							}							hasSubmit = true;						}						break;					default:						this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';				}			}		}		this._isFormSubmit = true;		this._sFormData = this._sFormData.substr(0, this._sFormData.length - 1);		YAHOO.log('Form initialized for transaction. HTML form POST message is: ' + this._sFormData, 'info', 'Connection');		return this._sFormData;	},  /**   * @description Resets HTML form properties when an HTML form or HTML form   * with file upload transaction is sent.   * @method resetFormState   * @private   * @static   * @return {void}   */	resetFormState:function(){		this._isFormSubmit = false;		this._isFileUpload = false;		this._formNode = null;		this._sFormData = "";	},  /**   * @description Creates an iframe to be used for form file uploads.  It is remove from the   * document upon completion of the upload transaction.   * @method createFrame   * @private   * @static   * @param {string} optional qualified path of iframe resource for SSL in IE.   * @return {void}   */	createFrame:function(secureUri){		// IE does not allow the setting of id and name attributes as object		// properties via createElement().  A different iframe creation		// pattern is required for IE.		var frameId = 'yuiIO' + this._transaction_id;		var io;		if(window.ActiveXObject){			io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />');			// IE will throw a security exception in an SSL environment if the			// iframe source is undefined.			if(typeof secureUri == 'boolean'){				io.src = 'javascript:false';			}			else if(typeof secureURI == 'string'){				// Deprecated				io.src = secureUri;			}		}		else{			io = document.createElement('iframe');			io.id = frameId;			io.name = frameId;		}		io.style.position = 'absolute';		io.style.top = '-1000px';		io.style.left = '-1000px';		document.body.appendChild(io);		YAHOO.log('File upload iframe created. Id is:' + frameId, 'info', 'Connection');	},  /**   * @description Parses the POST data and creates hidden form elements   * for each key-value, and appends them to the HTML form object.   * @method appendPostData   * @private   * @static   * @param {string} postData The HTTP POST data   * @return {array} formElements Collection of hidden fields.   */	appendPostData:function(postData)	{		var formElements = [];		var postMessage = postData.split('&');		for(var i=0; i < postMessage.length; i++){			var delimitPos = postMessage[i].indexOf('=');			if(delimitPos != -1){				formElements[i] = document.createElement('input');				formElements[i].type = 'hidden';				formElements[i].name = postMessage[i].substring(0,delimitPos);				formElements[i].value = postMessage[i].substring(delimitPos+1);				this._formNode.appendChild(formElements[i]);			}		}		return formElements;	},  /**   * @description Uploads HTML form, inclusive of files/attachments, using the   * iframe created in createFrame to facilitate the transaction.   * @method uploadFile   * @private   * @static   * @param {int} id The transaction id.   * @param {object} callback User-defined callback object.   * @param {string} uri Fully qualified path of resource.   * @param {string} postData POST data to be submitted in addition to HTML form.   * @return {void}   */	uploadFile:function(o, callback, uri, postData){		// Each iframe has an id prefix of "yuiIO" followed		// by the unique transaction id.		var frameId = 'yuiIO' + o.tId;		var uploadEncoding = 'multipart/form-data';		var io = document.getElementById(frameId);		var oConn = this;		// Track original HTML form attribute values.		var rawFormAttributes =		{			action:this._formNode.getAttribute('action'),			method:this._formNode.getAttribute('method'),			target:this._formNode.getAttribute('target')		};		// Initialize the HTML form properties in case they are		// not defined in the HTML form.		this._formNode.setAttribute('action', uri);		this._formNode.setAttribute('method', 'POST');		this._formNode.setAttribute('target', frameId);		if(this._formNode.encoding){			// IE does not respect property enctype for HTML forms.			// Instead it uses the property - "encoding".			this._formNode.setAttribute('encoding', uploadEncoding);		}		else{			this._formNode.setAttribute('enctype', uploadEncoding);		}		if(postData){			var oElements = this.appendPostData(postData);		}		// Start file upload.		this._formNode.submit();		// Fire global custom event -- startEvent		this.startEvent.fire(o);		if(o.startEvent){			// Fire transaction custom event -- startEvent			o.startEvent.fire(o);		}		// Start polling if a callback is present and the timeout		// property has been defined.		if(callback && callback.timeout){			this._timeOut[o.tId] = window.setTimeout(function(){ oConn.abort(o, callback, true); }, callback.timeout);		}		// Remove HTML elements created by appendPostData		if(oElements && oElements.length > 0){			for(var i=0; i < oElements.length; i++){				this._formNode.removeChild(oElements[i]);			}		}		// Restore HTML form attributes to their original		// values prior to file upload.		for(var prop in rawFormAttributes){			if(YAHOO.lang.hasOwnProperty(rawFormAttributes, prop)){				if(rawFormAttributes[prop]){					this._formNode.setAttribute(prop, rawFormAttributes[prop]);				}				else{					this._formNode.removeAttribute(prop);				}			}		}		// Reset HTML form state properties.		this.resetFormState();		// Create the upload callback handler that fires when the iframe		// receives the load event.  Subsequently, the event handler is detached		// and the iframe removed from the document.		var uploadCallback = function()		{			if(callback && callback.timeout){				window.clearTimeout(oConn._timeOut[o.tId]);				delete oConn._timeOut[o.tId];			}			// Fire global custom event -- completeEvent			oConn.completeEvent.fire(o);			if(o.completeEvent){				// Fire transaction custom event -- completeEvent				o.completeEvent.fire(o);			}			var obj = {};			obj.tId = o.tId;			obj.argument = callback.argument;			try			{				// responseText and responseXML will be populated with the same data from the iframe.				// Since the HTTP headers cannot be read from the iframe				obj.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:io.contentWindow.document.documentElement.textContent;				obj.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;			}			catch(e){}			if(callback && callback.upload){				if(!callback.scope){					callback.upload(obj);					YAHOO.log('Upload callback.', 'info', 'Connection');				}				else{					callback.upload.apply(callback.scope, [obj]);					YAHOO.log('Upload callback with scope.', 'info', 'Connection');				}			}			// Fire global custom event -- completeEvent			oConn.uploadEvent.fire(obj);			if(o.uploadEvent){				// Fire transaction custom event -- completeEvent				o.uploadEvent.fire(obj);			}			if(YAHOO.util.Event){				YAHOO.util.Event.removeListener(io, "load", uploadCallback);			}			else if(window.detachEvent){				io.detachEvent('onload', uploadCallback);			}			else{				io.removeEventListener('load', uploadCallback, false);			}			setTimeout(				function(){					document.body.removeChild(io);					oConn.releaseObject(o);					YAHOO.log('File upload iframe destroyed. Id is:' + frameId, 'info', 'Connection');				}, 100);		};		// Bind the onload handler to the iframe to detect the file upload response.		if(YAHOO.util.Event){			YAHOO.util.Event.addListener(io, "load", uploadCallback);		}		else if(window.attachEvent){			io.attachEvent('onload', uploadCallback);		}		else{			io.addEventListener('load', uploadCallback, false);		}	},  /**   * @description Method to terminate a transaction, if it has not reached readyState 4.   * @method abort   * @public   * @static   * @param {object} o The connection object returned by asyncRequest.   * @param {object} callback  User-defined callback object.   * @param {string} isTimeout boolean to indicate if abort resulted from a callback timeout.   * @return {boolean}   */	abort:function(o, callback, isTimeout)	{		var abortStatus;		if(o.conn){			if(this.isCallInProgress(o)){				// Issue abort request				o.conn.abort();				window.clearInterval(this._poll[o.tId]);				delete this._poll[o.tId];				if(isTimeout){					window.clearTimeout(this._timeOut[o.tId]);					delete this._timeOut[o.tId];				}				abortStatus = true;			}		}		else if(o.isUpload === true){			var frameId = 'yuiIO' + o.tId;			var io = document.getElementById(frameId);			if(io){				// Destroy the iframe facilitating the transaction.				document.body.removeChild(io);				YAHOO.log('File upload iframe destroyed. Id is:' + frameId, 'info', 'Connection');				if(isTimeout){					window.clearTimeout(this._timeOut[o.tId]);					delete this._timeOut[o.tId];				}				abortStatus = true;			}		}		else{			abortStatus = false;		}		if(abortStatus === true){			// Fire global custom event -- abortEvent			this.abortEvent.fire(o);			if(o.abortEvent){				// Fire transaction custom event -- abortEvent				o.abortEvent.fire(o);			}			this.handleTransactionResponse(o, callback, true);			YAHOO.log('Transaction ' + o.tId + ' aborted.', 'info', 'Connection');		}		else{			YAHOO.log('Transaction ' + o.tId + ' abort call failed.  Connection object no longer exists.', 'warn', 'Connection');		}		return abortStatus;	},  /**   * Public method to check if the transaction is still being processed.   *   * @method isCallInProgress   * @public   * @static   * @param {object} o The connection object returned by asyncRequest   * @return {boolean}   */	isCallInProgress:function(o)	{		// if the XHR object assigned to the transaction has not been dereferenced,		// then check its readyState status.  Otherwise, return false.		if(o && o.conn){			return o.conn.readyState !== 4 && o.conn.readyState !== 0;		}		else if(o && o.isUpload === true){			var frameId = 'yuiIO' + o.tId;			return document.getElementById(frameId)?true:false;		}		else{			return false;		}	},  /**   * @description Dereference the XHR instance and the connection object after the transaction is completed.   * @method releaseObject   * @private   * @static   * @param {object} o The connection object   * @return {void}   */	releaseObject:function(o)	{		//dereference the XHR instance.		if(o.conn){			o.conn = null;		}		YAHOO.log('Connection object for transaction ' + o.tId + ' destroyed.', 'info', 'Connection');		//dereference the connection object.		o = null;	}};YAHOO.register("connection", YAHOO.util.Connect, {version: "2.3.0", build: "442"});

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
7777女厕盗摄久久久| 欧美不卡在线视频| 国产一区二区中文字幕| 亚洲欧美另类图片小说| 日韩欧美一级特黄在线播放| 99视频在线精品| 激情久久久久久久久久久久久久久久 | 午夜国产精品一区| 日韩精品一区二区三区四区视频| 色狠狠桃花综合| 激情综合色播五月| 性做久久久久久| 亚洲欧美一区二区三区国产精品| 久久久久久久久久电影| 欧美另类一区二区三区| 色婷婷综合久久久久中文| 国产**成人网毛片九色 | 久久精品国产精品青草| 亚洲午夜精品网| 亚洲欧美另类小说| 中文字幕在线播放不卡一区| 久久久久国产成人精品亚洲午夜| 欧美电视剧在线观看完整版| 欧美日韩国产经典色站一区二区三区 | 欧美激情艳妇裸体舞| 日韩你懂的电影在线观看| 欧美日韩国产系列| 欧美亚洲高清一区二区三区不卡| 91丨九色丨国产丨porny| 国产福利一区二区三区| 激情综合色播五月| 久久99国产精品久久99| 久色婷婷小香蕉久久| 日本aⅴ免费视频一区二区三区| 亚洲一区二区三区美女| 亚洲综合色自拍一区| 亚洲免费观看高清完整版在线观看熊 | 日韩成人伦理电影在线观看| 亚洲成av人影院在线观看网| 亚洲一区二区四区蜜桃| 亚洲夂夂婷婷色拍ww47 | 亚洲视频电影在线| 亚洲人成网站精品片在线观看| 国产精品久久久久天堂| 国产精品久久久久久久久免费丝袜| 国产欧美综合色| 国产日本欧美一区二区| 欧美国产成人在线| 一区视频在线播放| 亚洲女厕所小便bbb| 亚洲国产精品嫩草影院| 日本成人中文字幕在线视频| 麻豆久久久久久久| 国产一区二三区| jiyouzz国产精品久久| 一本久道久久综合中文字幕| 欧美三级日韩三级国产三级| 91精选在线观看| 久久丝袜美腿综合| 中文字幕在线一区| 亚洲一区二区三区精品在线| 日本不卡一二三| 国产成人亚洲综合a∨猫咪| 不卡的av电影| 欧美日韩视频第一区| 亚洲免费色视频| 亚洲成人先锋电影| 激情小说欧美图片| 不卡一二三区首页| 欧美日韩精品一区二区三区蜜桃 | 欧美性猛交xxxxxxxx| 欧美日韩1234| 久久久美女毛片| 亚洲精品视频在线| 青娱乐精品视频| 成人av免费在线播放| 欧美日韩中文国产| 国产色综合久久| 亚洲综合一区在线| 国产麻豆精品theporn| 91丨porny丨中文| 日韩无一区二区| 国产精品国产三级国产三级人妇| 亚洲一区二区视频在线观看| 国产一区美女在线| 色狠狠av一区二区三区| 精品va天堂亚洲国产| 一区二区三区中文在线| 久久国产精品99久久久久久老狼| 91丝袜美腿高跟国产极品老师 | 国产偷国产偷精品高清尤物| 亚洲mv在线观看| 成人av在线资源| 日韩欧美中文一区二区| 亚洲欧美另类综合偷拍| 国产一区二区在线免费观看| 在线观看一区日韩| 欧美激情在线一区二区三区| 日本不卡视频在线| 色999日韩国产欧美一区二区| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 久久精品视频网| 日日骚欧美日韩| 91老师片黄在线观看| wwww国产精品欧美| 日韩av一区二区三区| 91在线视频播放地址| 久久影音资源网| 日韩av一区二区在线影视| 色婷婷亚洲婷婷| 国产精品美女久久福利网站| 激情综合一区二区三区| 777久久久精品| 亚洲自拍与偷拍| 91农村精品一区二区在线| 国产人成亚洲第一网站在线播放 | 亚洲猫色日本管| 国产成人在线看| 26uuu另类欧美| 免费在线看成人av| 欧美喷潮久久久xxxxx| 一区二区在线观看免费视频播放| 国产成人精品免费一区二区| 久久综合久久综合久久综合| 蜜桃av一区二区在线观看| 欧美日韩一本到| 亚洲成人综合视频| 欧美少妇性性性| 亚洲在线成人精品| 在线精品视频一区二区| 亚洲精品视频在线看| 93久久精品日日躁夜夜躁欧美| 国产精品久久久久aaaa| 成人av在线播放网站| 国产精品免费观看视频| 粉嫩aⅴ一区二区三区四区| 欧美激情一二三区| 成人h动漫精品一区二区| 国产精品美女久久久久aⅴ国产馆| 高清日韩电视剧大全免费| 亚洲国产精品激情在线观看| 成人自拍视频在线观看| 国产精品久久久久影视| 91麻豆国产自产在线观看| 亚洲激情第一区| 欧美色中文字幕| 日本视频在线一区| 欧美成人性福生活免费看| 国产在线精品免费av| 国产亚洲人成网站| k8久久久一区二区三区| 一区二区三区精品| 成人免费一区二区三区在线观看| 91亚洲精华国产精华精华液| 亚洲精品乱码久久久久久久久 | 99国产麻豆精品| 亚洲乱码中文字幕综合| 欧美日韩国产高清一区二区三区 | 国产一区二区视频在线| 国产精品视频看| 91久久精品国产91性色tv| 天天影视涩香欲综合网| 精品国产乱码久久久久久久 | 日韩一级片在线观看| 国产精品综合一区二区三区| 国产精品乱码久久久久久| 91高清在线观看| 久久激五月天综合精品| 国产精品伦一区| 欧美视频中文字幕| 国内精品伊人久久久久影院对白| 国产欧美精品一区二区三区四区| 色综合天天性综合| 日本va欧美va瓶| 中文字幕在线不卡| 欧美一区二区三区四区久久| 大尺度一区二区| 午夜精品在线视频一区| 久久精品亚洲国产奇米99| 日本道色综合久久| 捆绑调教一区二区三区| 日韩伦理电影网| 日韩一区二区三区视频在线| 成人激情av网| 日韩电影一二三区| 最新日韩av在线| 日韩欧美第一区| 91福利精品视频| 国产麻豆精品在线| 五月综合激情婷婷六月色窝| 国产欧美一区二区在线观看| 777午夜精品视频在线播放| 成人av资源下载| 精品一区二区精品| 亚洲一区欧美一区| 国产精品污网站| 精品国精品国产尤物美女| 欧美丝袜丝交足nylons| 成人av电影免费在线播放| 久久超碰97人人做人人爱|