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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ieemu.js

?? ajax source code .
?? JS
字號:
/*----------------------------------------------------------------------------\|                                   IE Emu                                    ||-----------------------------------------------------------------------------||                         Created by Erik Arvidsson                           ||                  (http://webfx.eae.net/contact.html#erik)                   ||                      For WebFX (http://webfx.eae.net/)                      ||-----------------------------------------------------------------------------|| A emulation of Internet Explorer DHTML Object Model for Mozilla             ||-----------------------------------------------------------------------------||                  Copyright (c) 1999 - 2004 Erik Arvidsson                   ||-----------------------------------------------------------------------------|| This software is provided "as is", without warranty of any kind, express or || implied, including  but not limited  to the warranties of  merchantability, || fitness for a particular purpose and noninfringement. In no event shall the || authors or  copyright  holders be  liable for any claim,  damages or  other || liability, whether  in an  action of  contract, tort  or otherwise, arising || from,  out of  or in  connection with  the software or  the  use  or  other || dealings in the software.                                                   || - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - || This  software is  available under the  three different licenses  mentioned || below.  To use this software you must chose, and qualify, for one of those. || - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - || The WebFX Non-Commercial License          http://webfx.eae.net/license.html || Permits  anyone the right to use the  software in a  non-commercial context || free of charge.                                                             || - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - || The WebFX Commercial license           http://webfx.eae.net/commercial.html || Permits the  license holder the right to use  the software in a  commercial || context. Such license must be specifically obtained, however it's valid for || any number of  implementations of the licensed software.                    || - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - || GPL - The GNU General Public License    http://www.gnu.org/licenses/gpl.txt || Permits anyone the right to use and modify the software without limitations || as long as proper  credits are given  and the original  and modified source || code are included. Requires  that the final product, software derivate from || the original  source or any  software  utilizing a GPL  component, such  as || this, is also licensed under the GPL license.                               || - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - || MPL - Mozilla Public License                    http://www.mozilla.org/MPL/ ||                                                                             || The contents of this file are subject to the Mozilla Public License Version || 1.1 (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.mozilla.org/MPL/                                                 ||                                                                             || Software distributed under the License is distributed on an "AS IS" basis,  || WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License    || for the specific language governing rights and limitations under the        || License.                                                                    ||                                                                             || The Original Code is IE Emu.                                                ||                                                                             || The Initial Developer of the Original Code is Erik Arvidsson.               || Portions created by the Initial Developer are Copyright (C) 1999-2004       || the Initial Developer. All Rights Reserved.                                 ||                                                                             || Contributor(s):                                                             ||                                                                             ||-----------------------------------------------------------------------------|| 2002-??-?? | First version                                                  || 2004-04-13 | Impreved currentStyle emulation. Updated to not that the code  ||            |is available under GPL, MPL or WebFX Non-Commercial License     ||-----------------------------------------------------------------------------|| Created 2002-??-?? | All changes are in the log above. | Updated 2004-04-13 |\----------------------------------------------------------------------------*/

if (Browser.isMozilla) { // set up ie environment for Moz
	
	extendEventObject();	emulateAttachEvent();	emulateEventHandlers(["click", "dblclick", "mouseover", "mouseout",							"mousedown", "mouseup", "mousemove",							"keydown", "keypress", "keyup"]);
	emulateCurrentStyle();	/*emulateDocumentAll();	emulateElement()	*/	// It is better to use a constant for event.button	Event.LEFT = 0;	Event.MIDDLE = 1;	Event.RIGHT = 2;}else {	Event = {};	// IE is returning wrong button number	Event.LEFT = 1;	Event.MIDDLE = 4;	Event.RIGHT = 2;}/* * Extends the event object with srcElement, cancelBubble, returnValue, * fromElement and toElement */function extendEventObject() {	Event.prototype.__defineSetter__("returnValue", function (b) {		if (!b) this.preventDefault();		return b;	});	Event.prototype.__defineSetter__("cancelBubble", function (b) {		if (b) this.stopPropagation();		return b;	});	Event.prototype.__defineGetter__("srcElement", function () {		var node = this.target;		while (node.nodeType != 1) node = node.parentNode;		return node;	});	Event.prototype.__defineGetter__("fromElement", function () {		var node;		if (this.type == "mouseover")			node = this.relatedTarget;		else if (this.type == "mouseout")			node = this.target;		if (!node) return;		while (node.nodeType != 1) node = node.parentNode;		return node;	});	Event.prototype.__defineGetter__("toElement", function () {		var node;		if (this.type == "mouseout")			node = this.relatedTarget;		else if (this.type == "mouseover")			node = this.target;		if (!node) return;		while (node.nodeType != 1) node = node.parentNode;		return node;	});	Event.prototype.__defineGetter__("offsetX", function () {		return this.layerX;	});	Event.prototype.__defineGetter__("offsetY", function () {		return this.layerY;	});}/* * Emulates element.attachEvent as well as detachEvent */function emulateAttachEvent() {	HTMLDocument.prototype.attachEvent =	HTMLElement.prototype.attachEvent = function (sType, fHandler) {		var shortTypeName = sType.replace(/on/, "");		fHandler._ieEmuEventHandler = function (e) {			window.event = e;			return fHandler();		};		this.addEventListener(shortTypeName, fHandler._ieEmuEventHandler, false);	};	HTMLDocument.prototype.detachEvent =	HTMLElement.prototype.detachEvent = function (sType, fHandler) {		var shortTypeName = sType.replace(/on/, "");		if (typeof fHandler._ieEmuEventHandler == "function")			this.removeEventListener(shortTypeName, fHandler._ieEmuEventHandler, false);		else			this.removeEventListener(shortTypeName, fHandler, true);	};}/* * This function binds the event object passed along in an * event to window.event */function emulateEventHandlers(eventNames) {	for (var i = 0; i < eventNames.length; i++) {		document.addEventListener(eventNames[i], function (e) {			window.event = e;		}, true);	// using capture	}}/* * Simple emulation of document.all * this one is far from complete. Be cautious */function emulateAllModel() {	var allGetter = function () {		var a = this.getElementsByTagName("*");		var node = this;		a.tags = function (sTagName) {			return node.getElementsByTagName(sTagName);		};		return a;	};	HTMLDocument.prototype.__defineGetter__("all", allGetter);	HTMLElement.prototype.__defineGetter__("all", allGetter);}function extendElementModel() {	HTMLElement.prototype.__defineGetter__("parentElement", function () {		if (this.parentNode == this.ownerDocument) return null;		return this.parentNode;	});	HTMLElement.prototype.__defineGetter__("children", function () {		var tmp = [];		var j = 0;		var n;		for (var i = 0; i < this.childNodes.length; i++) {			n = this.childNodes[i];			if (n.nodeType == 1) {				tmp[j++] = n;				if (n.name) {	// named children					if (!tmp[n.name])						tmp[n.name] = [];					tmp[n.name][tmp[n.name].length] = n;				}				if (n.id)		// child with id					tmp[n.id] = n			}		}		return tmp;	});	HTMLElement.prototype.contains = function (oEl) {		if (oEl == this) return true;		if (oEl == null) return false;		return this.contains(oEl.parentNode);	};}function emulateCurrentStyle() {	HTMLElement.prototype.__defineGetter__("currentStyle", function () {		return this.ownerDocument.defaultView.getComputedStyle(this, null);		/*		var cs = {};		var el = this;		for (var i = 0; i < properties.length; i++) {			cs.__defineGetter__(properties[i], encapsulateObjects(el, properties[i]));		}		return cs;		*/	});}function emulateHTMLModel() {	// This function is used to generate a html string for the text properties/methods	// It replaces '\n' with "<BR"> as well as fixes consecutive white spaces	// It also repalaces some special characters	function convertTextToHTML(s) {		s = s.replace(/\&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/\n/g, "<BR>");		while (/\s\s/.test(s))			s = s.replace(/\s\s/, "&nbsp; ");		return s.replace(/\s/g, " ");	}	HTMLElement.prototype.insertAdjacentHTML = function (sWhere, sHTML) {		var df;	// : DocumentFragment		var r = this.ownerDocument.createRange();		switch (String(sWhere).toLowerCase()) {			case "beforebegin":				r.setStartBefore(this);				df = r.createContextualFragment(sHTML);				this.parentNode.insertBefore(df, this);				break;			case "afterbegin":				r.selectNodeContents(this);				r.collapse(true);				df = r.createContextualFragment(sHTML);				this.insertBefore(df, this.firstChild);				break;			case "beforeend":				r.selectNodeContents(this);				r.collapse(false);				df = r.createContextualFragment(sHTML);				this.appendChild(df);				break;			case "afterend":				r.setStartAfter(this);				df = r.createContextualFragment(sHTML);				this.parentNode.insertBefore(df, this.nextSibling);				break;		}	};	HTMLElement.prototype.__defineSetter__("outerHTML", function (sHTML) {	   var r = this.ownerDocument.createRange();	   r.setStartBefore(this);	   var df = r.createContextualFragment(sHTML);	   this.parentNode.replaceChild(df, this);	   return sHTML;	});	HTMLElement.prototype.__defineGetter__("canHaveChildren", function () {		switch (this.tagName) {			case "AREA":			case "BASE":			case "BASEFONT":			case "COL":			case "FRAME":			case "HR":			case "IMG":			case "BR":			case "INPUT":			case "ISINDEX":			case "LINK":			case "META":			case "PARAM":				return false;		}		return true;	});	HTMLElement.prototype.__defineGetter__("outerHTML", function () {		var attr, attrs = this.attributes;		var str = "<" + this.tagName;		for (var i = 0; i < attrs.length; i++) {			attr = attrs[i];			if (attr.specified)				str += " " + attr.name + '="' + attr.value + '"';		}		if (!this.canHaveChildren)			return str + ">";		return str + ">" + this.innerHTML + "</" + this.tagName + ">";	});	HTMLElement.prototype.__defineSetter__("innerText", function (sText) {		this.innerHTML = convertTextToHTML(sText);		return sText;	});	var tmpGet;	HTMLElement.prototype.__defineGetter__("innerText", tmpGet = function () {		var r = this.ownerDocument.createRange();		r.selectNodeContents(this);		return r.toString();	});	HTMLElement.prototype.__defineSetter__("outerText", function (sText) {		this.outerHTML = convertTextToHTML(sText);		return sText;	});	HTMLElement.prototype.__defineGetter__("outerText", tmpGet);	HTMLElement.prototype.insertAdjacentText = function (sWhere, sText) {		this.insertAdjacentHTML(sWhere, convertTextToHTML(sText));	};}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人一级电影| 欧美成人精品1314www| 日韩一级黄色片| 国产精品五月天| 日韩av午夜在线观看| 菠萝蜜视频在线观看一区| 91麻豆精品国产91| 国产精品嫩草99a| 国产一区二区三区美女| 欧洲精品中文字幕| 自拍偷拍亚洲综合| 国产资源在线一区| 日韩午夜在线影院| 亚洲v中文字幕| 色欧美片视频在线观看| 国产日产精品1区| 精品亚洲国产成人av制服丝袜 | 精品中文字幕一区二区| 在线免费观看日韩欧美| 欧美韩日一区二区三区四区| 久久电影网电视剧免费观看| 91精品国产综合久久久久久| 亚洲bt欧美bt精品777| 色婷婷国产精品久久包臀| 亚洲欧洲av另类| 国产 日韩 欧美大片| 久久综合久久综合九色| 理论片日本一区| 日韩一级成人av| 免费高清不卡av| 91精品国产综合久久福利| 亚洲国产精品视频| 欧美日韩国产一二三| 亚洲一区免费视频| 在线视频国产一区| 亚洲国产一二三| 精品视频999| 亚洲成人在线免费| 欧美日韩国产一区| 日韩和欧美一区二区三区| 8x8x8国产精品| 日韩和欧美一区二区| 欧美日韩一区在线| 日本不卡一区二区| 欧美成人aa大片| 国产成人免费在线观看| 国产精品污污网站在线观看| 成人av在线播放网址| 亚洲婷婷综合久久一本伊一区| 成人av电影观看| 亚洲免费视频中文字幕| 在线观看亚洲精品视频| 日韩国产欧美在线观看| 日韩精品一区二区三区swag| 国产精品亚洲专一区二区三区| 亚洲国产成人在线| 欧美午夜理伦三级在线观看| 日本不卡在线视频| 国产欧美综合在线观看第十页| 成人黄页在线观看| 老司机精品视频线观看86| 欧美激情一区在线观看| 日本道精品一区二区三区| 亚洲第一精品在线| 久久久三级国产网站| 91免费视频网| 蜜臀av国产精品久久久久| 久久精品男人的天堂| 在线亚洲一区观看| 久久精品免费观看| 亚洲私人影院在线观看| 91麻豆精品国产91久久久久 | 一区二区三区丝袜| 91精品国产高清一区二区三区蜜臀| 老鸭窝一区二区久久精品| 亚洲欧美区自拍先锋| 91精品国产免费| 99久久综合国产精品| 美女视频第一区二区三区免费观看网站| 久久久精品综合| 欧美揉bbbbb揉bbbbb| 成人一二三区视频| 奇米一区二区三区av| 亚洲色图视频网| 久久久久国产免费免费| 欧美日韩午夜在线| 成人久久视频在线观看| 免费成人美女在线观看| 亚洲自拍偷拍av| 中文字幕 久热精品 视频在线| 欧美久久婷婷综合色| 99re亚洲国产精品| 国产传媒日韩欧美成人| 天天av天天翘天天综合网色鬼国产| 中文字幕成人网| 欧美成人r级一区二区三区| 91黄视频在线| 成人av免费在线| 国产在线精品一区二区| 日韩中文字幕区一区有砖一区| 专区另类欧美日韩| 欧美国产日产图区| 精品国产sm最大网站| 91精品国产91久久久久久一区二区| 91亚洲国产成人精品一区二三| 国产一区二区影院| 裸体在线国模精品偷拍| 日韩av一区二区三区四区| 亚洲高清免费视频| 亚洲国产裸拍裸体视频在线观看乱了| 中文字幕av一区二区三区免费看| 久久亚洲免费视频| 精品盗摄一区二区三区| 日韩精品一区二区三区在线播放| 7777精品伊人久久久大香线蕉最新版| 国产亚洲欧美色| 亚洲精品一区二区三区影院| 欧美一级xxx| 欧美成人video| 精品成人私密视频| 精品日韩一区二区三区| 欧美r级电影在线观看| 日韩免费看的电影| 久久久综合精品| 国产亚洲成av人在线观看导航| 久久综合色综合88| 国产亚洲一二三区| 日韩理论在线观看| 亚洲一区二区五区| 日本欧美一区二区| 久久精品国产精品亚洲红杏| 久久国产日韩欧美精品| 国内精品伊人久久久久影院对白| 韩国在线一区二区| 国产盗摄一区二区| 97久久超碰国产精品| 欧美在线视频全部完| 日韩欧美一二区| 国产日韩精品一区二区三区| 中文字幕在线一区二区三区| 亚洲婷婷国产精品电影人久久| 亚洲成人精品在线观看| 久久国产生活片100| 成人性色生活片| 欧美亚一区二区| 精品人在线二区三区| 中国av一区二区三区| 亚洲国产视频网站| 黄页视频在线91| 91丨porny丨最新| 51精品久久久久久久蜜臀| 久久综合久久鬼色| 亚洲人成亚洲人成在线观看图片| 午夜电影久久久| 国产乱淫av一区二区三区| 91麻豆6部合集magnet| 欧美一区二区在线播放| 国产精品麻豆视频| 日韩电影一区二区三区四区| 国产福利一区二区三区在线视频| 色香色香欲天天天影视综合网| 日韩亚洲国产中文字幕欧美| 国产精品久久777777| 日韩成人免费电影| 99久久er热在这里只有精品15| 欧美一级理论片| 亚洲人成亚洲人成在线观看图片 | 久久精品一二三| 亚洲一级二级在线| 国产成人av电影免费在线观看| 欧美色网一区二区| 日本一区二区三区国色天香| 午夜精品福利一区二区三区av | 久久久久久免费| 亚洲成人资源网| 97久久久精品综合88久久| 亚洲精品在线观看网站| 亚洲综合免费观看高清完整版在线 | 亚洲大尺度视频在线观看| 成人免费视频网站在线观看| 日韩欧美www| 亚洲大片在线观看| 色999日韩国产欧美一区二区| 久久久久国产精品麻豆ai换脸| 午夜成人免费视频| 91国偷自产一区二区三区成为亚洲经典| 亚洲精品一区在线观看| 日本一区中文字幕| 欧美视频在线播放| 亚洲精品中文在线| 97久久精品人人爽人人爽蜜臀 | 亚洲色图清纯唯美| 福利电影一区二区三区| 久久一区二区三区四区| 精一区二区三区| 精品99一区二区| 国产激情偷乱视频一区二区三区| 26uuu精品一区二区| 国产在线一区二区| 精品福利一区二区三区免费视频|