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

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

?? utils.js

?? 尚洋倉(cāng)庫(kù)管理系統(tǒng),對(duì)倉(cāng)庫(kù)
?? JS
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
 */Zapatec.Utils.loadPref = function(txt) {	var obj = null;	try {		eval("obj={" + txt + "}");	} catch(e) {}	return obj;};/** * Merges the values of the source object into the destination object. * * @param dest [Object] the destination object. * @param src [Object] the source object. */Zapatec.Utils.mergeObjects = function(dest, src) {	for (var i in src)		dest[i] = src[i];};// based on the WCH idea// http://www.aplus.co.yu/WCH/code3/WCH.js/// \defgroup WCH functions//@{Zapatec.Utils.__wch_id = 0;	/**< [number, static] used to create ID-s for the WCH objects *//** * Create an WCH object.  This function does nothing if the browser is not * IE5.5 or IE6.0.  A WCH object is one of the most bizarre tricks to avoid a * notorious IE bug: IE normally shows "windowed controls" on top of any HTML * elements, regardless of any z-index that might be specified in CSS.  This * technique is described at: http://www.aplus.co.yu/WCH/ * * A "WCH object" is actually an HTMLIFrame element having a certain "CSS * filter" (proprietary MSIE extension) that forces opacity zero.  This object, * displayed on top of a windowed control such as a select box, will completely * hide the select box, allowing us to place other HTMLElement objects above. * * WCH stands for "Windowed Controls Hider". * * @param element [HTMLElement, optional] -- Create the WCH IFRAME inside this. * * * @return [HTMLIFrame or null] a new WCH object if the browser is "supported", null otherwise. */Zapatec.Utils.createWCH = function(element) {	var f = null;	element = element || window.self.document.body;	if (Zapatec.is_ie && !Zapatec.is_ie5) {		var filter = 'filter:progid:DXImageTransform.Microsoft.alpha(style=0,opacity=0);';		var id = "WCH" + (++Zapatec.Utils.__wch_id);		element.insertAdjacentHTML			('beforeEnd', '<iframe id="' + id + '" scroll="no" frameborder="0" ' +			 'style="z-index:0;position:absolute;visibility:hidden;' + filter +			 'border:0;top:0;left:0;width:0;height:0;" ' +			 'src="javascript:false;"></iframe>');		f = window.self.document.getElementById(id);	}	return f;};/** * Configure a given WCH object to be displayed on top of the given element. * Optionally, a second element can be passed, and in this case it will setup * the WCH object to cover both elements. * * @param f [HTMLIFrame] the WCH object * @param el [HTMLElement] the element to cover. * @param el2 [HTMLElement, optional] another element to cover. */Zapatec.Utils.setupWCH_el = function(f, el, el2) {	if (f) {		var pos = Zapatec.Utils.getAbsolutePos(el),			X1 = pos.x,			Y1 = pos.y,			X2 = X1 + el.offsetWidth,			Y2 = Y1 + el.offsetHeight;		if (el2) {			var p2 = Zapatec.Utils.getAbsolutePos(el2),				XX1 = p2.x,				YY1 = p2.y,				XX2 = XX1 + el2.offsetWidth,				YY2 = YY1 + el2.offsetHeight;			if (X1 > XX1)				X1 = XX1;			if (Y1 > YY1)				Y1 = YY1;			if (X2 < XX2)				X2 = XX2;			if (Y2 < YY2)				Y2 = YY2;		}		Zapatec.Utils.setupWCH(f, X1, Y1, X2-X1, Y2-Y1);	}};/** * Configure a WCH object to cover a certain part of the screen. * * @param f [HTMLIFrame] the WCH object. * @param x [number] the X coordinate. * @param y [number] the Y coordinate. * @param w [number] the width of the area. * @param h [number] the height of the area. */Zapatec.Utils.setupWCH = function(f, x, y, w, h) {	if (f) {		var s = f.style;		(typeof x != "undefined") && (s.left = x + "px");		(typeof y != "undefined") && (s.top = y + "px");		(typeof w != "undefined") && (s.width = w + "px");		(typeof h != "undefined") && (s.height = h + "px");		s.visibility = "inherit";	}};/** * Hide a WCH object. * * @param f [HTMLIFrame] object to hide. */Zapatec.Utils.hideWCH = function(f) {	if (f)		f.style.visibility = "hidden";};//@}/// \defgroup Scroll-with-window functions//@{/** * A generic Utils function that returns the current scroll position. * */Zapatec.Utils.getPageScrollY = function() {	return window.pageYOffset ||			document.documentElement.scrollTop ||			(document.body ? document.body.scrollTop : 0) ||			0;};// Object setup.Zapatec.ScrollWithWindow = {};Zapatec.ScrollWithWindow.list = [];// Set to a number between 0 and 1, lower means longer scrolling.Zapatec.ScrollWithWindow.stickiness = 0.25;/** * Registers a given object to have its style.top set equal to the window * scroll position as the browser scrolls. * * @param node [HTMLElement] -- a reference to the node to scroll. */Zapatec.ScrollWithWindow.register = function(node) {	var top = parseInt(node.style.top) || 0;	var scrollY = window.pageYOffset || document.body.scrollTop ||		document.documentElement.scrollTop || 0;	top -= scrollY;	if (top < 0) top = 0;	Zapatec.ScrollWithWindow.list[Zapatec.ScrollWithWindow.list.length] = {		node: node,		origTop: top	};};/** * Unregisters a given object. * * @param node [HTMLElement] -- a reference to the node to scroll. */Zapatec.ScrollWithWindow.unregister = function(node) {	for (var count = 0; count < Zapatec.ScrollWithWindow.list.length; count++) {		var elm = Zapatec.ScrollWithWindow.list[count];		if (node == elm.node) {			Zapatec.ScrollWithWindow.list.splice(count, 1);			return;		}	}};/** * \internal Called each time the window is scrolled to set objects' positions. * * @param newScrollY [number] -- the new window scroll position. */Zapatec.ScrollWithWindow.handler = function(newScrollY) {	// Move oldScrollY towards newScrollY, evening up if the difference is small.	oldScrollY += ((newScrollY - oldScrollY) * this.stickiness);	if (Math.abs(oldScrollY - newScrollY) <= 1) oldScrollY = newScrollY;	for (var count = 0; count < Zapatec.ScrollWithWindow.list.length; count++) {		var elm = Zapatec.ScrollWithWindow.list[count];		var node = elm.node;		if (!elm.origTop) {			elm.origTop = Zapatec.Utils.getAbsolutePos(node).y;			node.style.position = 'absolute';		}		node.style.top = elm.origTop + parseInt(oldScrollY) + 'px';	}};// Processed scroll position & Event hook.var oldScrollY = Zapatec.Utils.getPageScrollY();setInterval(	'var newScrollY = Zapatec.Utils.getPageScrollY(); ' +	'if (newScrollY != oldScrollY) { ' +		'Zapatec.ScrollWithWindow.handler(newScrollY); ' +	'}', 50);//@}/** * Destroys the given element (remove it from the DOM tree) if it's not null * and it's parent is not null. * * @param el [HTMLElement] the element to destroy. */Zapatec.Utils.destroy = function(el) {	if (el && el.parentNode)		el.parentNode.removeChild(el);};/** * Opens a new window at a certain URL and having some properties. * * @param url [string] the URL to open a new window to. * @param windowName [string] the name of the new window (as for target attribute). * @param width [number] the width of the new window in pixels. * @param height [number] the height of the new window in pixels. * @param scrollbars [string] "yes" or "no" for scrollbars. * * @return [object] the new window */Zapatec.Utils.newCenteredWindow = function(url, windowName, width, height, scrollbars){	var leftPosition = 0;	var topPosition = 0;	if (screen.width)		leftPosition = (screen.width -  width)/2;	if (screen.height)		topPosition = (screen.height -  height)/2;	var winArgs =		'height=' + height +		',width=' + width +		',top=' + topPosition +		',left=' + leftPosition +		',scrollbars=' + scrollbars +		',resizable';	var win = window.open(url,windowName,winArgs);	return win;};/** * Finds the size of the current web page. This is the usable size * and does not include the browser's menu and buttons. * * @return [object] dimension with the height and width of the window */Zapatec.Utils.getWindowSize = function() {  var iWidth = 0;  var iHeight = 0;  if (document.compatMode && document.compatMode == 'CSS1Compat') {    // Standards-compliant mode    if (window.opera) {    	iWidth = document.body.clientWidth || 0;    	iHeight = document.body.clientHeight || 0;    } else {    	iWidth = document.documentElement.clientWidth || 0;    	iHeight = document.documentElement.clientHeight || 0;    }  } else {    // Non standards-compliant mode  	iWidth = window.innerWidth || document.body.clientWidth ||  	 document.documentElement.clientWidth || 0;  	iHeight = window.innerHeight || document.body.clientHeight ||  	 document.documentElement.clientHeight || 0;  }	return {	  width: iWidth,	  height: iHeight	};};/** * Given a reference to a select element, this function will select the option * having the given value and optionally will call the default handler for * "onchange". * * @param sel [HTMLSelectElement] reference to the SELECT element. * @param val [string] the value that we should select. * @param call_default [boolean] true if the default onchange should be called. */Zapatec.Utils.selectOption = function(sel, val, call_default) {	var a = sel.options, i, o;	for (i = a.length; --i >= 0;) {		o = a[i];		o.selected = (o.val == val);	}	sel.value = val;	if (call_default) {		if (typeof sel.onchange == "function")			sel.onchange();		else if (typeof sel.onchange == "string")			eval(sel.onchange);	}};/** * A more flexible way to get the "nextSibling" of a given element.  If the * "tag" argument is passed, then this function will return the next sibling * that has a certain tag.  Otherwise it will simply return el.nextSibling. * * @param el [HTMLElement] reference to the anchor element. * @param tag [string] the tag name of the returned node. * @param alternateTag [string] the alternate tag name of the returned node. * * @return [HTMLElement or null] el.nextSibling if tag is not passed, or the * first element after el having the specified tag.  Null is returned if no * element could be found. */Zapatec.Utils.getNextSibling = function(el, tag, alternateTag) {	el = el.nextSibling;	if (!tag) {		return el;	}	tag = tag.toLowerCase();	if (alternateTag) alternateTag = alternateTag.toLowerCase();	while (el) {		if (el.nodeType == 1 && (el.tagName.toLowerCase() == tag ||		 (alternateTag && el.tagName.toLowerCase() == alternateTag))) {			return el;		}		el = el.nextSibling;	}	return el;};/** * Similar to Zapatec.Utils.getNextSibling(), this function will return the * first child of the given element that has a specified tag. * * @param el [HTMLElement] reference to the anchor element. * @param tag [string] the tag name of the returned node. * @param alternateTag [string] the alternate tag name of the returned node. * * @return [HTMLElement] reference to the found node, or null if none could be * found. */Zapatec.Utils.getFirstChild = function(el, tag, alternateTag) {

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久国产综合精品色伊| 国内成+人亚洲+欧美+综合在线 | 中文字幕综合网| 国产日韩在线不卡| 国产欧美一区二区三区沐欲| 日韩欧美在线一区二区三区| 日韩一二三四区| 日韩一区二区中文字幕| 日韩三级视频中文字幕| 7799精品视频| 日韩一区二区三区视频在线| 日韩欧美国产精品一区| 亚洲精品在线观看网站| 久久一区二区三区四区| 国产欧美一区二区精品性色 | 麻豆一区二区三| 久久狠狠亚洲综合| 国产激情91久久精品导航| 成人午夜视频免费看| 99久久99久久久精品齐齐| 91浏览器打开| 欧美日韩精品系列| 欧美一级黄色大片| 久久人人爽爽爽人久久久| 国产精品天干天干在线综合| 亚洲色图制服丝袜| 污片在线观看一区二区| 激情av综合网| 成人免费视频播放| 欧美伊人精品成人久久综合97| 欧美系列亚洲系列| 欧美一区二区不卡视频| 久久精品在线免费观看| 一区精品在线播放| 亚洲.国产.中文慕字在线| 蜜桃久久久久久| 成人app网站| 欧美人体做爰大胆视频| 精品成人在线观看| 亚洲免费观看高清完整版在线观看| 亚洲观看高清完整版在线观看| 日日摸夜夜添夜夜添精品视频| 国产精品影视在线| 色婷婷激情久久| 精品国产污网站| 亚洲天堂精品在线观看| 丝袜a∨在线一区二区三区不卡 | 337p日本欧洲亚洲大胆精品| 国产精品国产a级| 婷婷综合在线观看| 国产成人av一区二区三区在线 | 91伊人久久大香线蕉| 6080日韩午夜伦伦午夜伦| 久久精品人人做| 亚洲国产cao| 国产成人免费xxxxxxxx| 欧美老女人第四色| 国产精品久久久久久户外露出 | 欧美日韩情趣电影| 国产欧美日本一区二区三区| 亚洲va韩国va欧美va| 国产一区高清在线| 欧美日韩国产综合草草| 国产精品久久影院| 久久综合综合久久综合| 色婷婷激情久久| 中文字幕乱码日本亚洲一区二区 | 不卡一区二区三区四区| 日韩精品一区二区三区视频| 一区二区三区四区在线免费观看 | 91网页版在线| 久久久不卡网国产精品二区 | 欧美日韩一区小说| 亚洲天堂免费看| 国产成人在线观看| 精品三级在线观看| 亚洲bt欧美bt精品777| aaa亚洲精品| 国产亚洲欧美中文| 麻豆精品久久精品色综合| 在线视频一区二区三区| 国产精品美女久久福利网站| 精品一区二区在线免费观看| 欧美精品丝袜久久久中文字幕| 成人欧美一区二区三区视频网页| 国产精品夜夜爽| 久久综合99re88久久爱| 日本成人在线一区| 欧美日韩你懂得| 亚洲一二三级电影| 欧美亚洲一区三区| 亚洲欧美成aⅴ人在线观看 | 久久综合狠狠综合久久综合88| 日本女优在线视频一区二区 | 亚洲高清在线视频| 欧美性三三影院| 一区二区成人在线视频| 91在线一区二区三区| 成人欧美一区二区三区| 丁香激情综合五月| 欧美激情一区二区三区蜜桃视频| 狠狠色狠狠色合久久伊人| 欧美成人精品3d动漫h| 蜜桃免费网站一区二区三区| 日韩一区二区免费在线观看| 青青草91视频| 日韩精品一区国产麻豆| 精品亚洲aⅴ乱码一区二区三区| 精品日韩av一区二区| 精品制服美女久久| 精品日韩在线一区| 国产一区在线观看麻豆| 国产午夜精品理论片a级大结局 | 欧美日韩久久一区| 午夜精品久久久久影视| 日韩一区二区免费在线电影| 麻豆精品在线观看| 久久久久国产精品麻豆ai换脸 | 欧美亚洲国产怡红院影院| 伊人开心综合网| 欧美久久久久久久久| 日韩精品电影一区亚洲| 日韩久久免费av| 国产精品91xxx| 国产精品福利一区| 在线一区二区三区| 免费在线观看一区| 久久久一区二区三区捆绑**| 9l国产精品久久久久麻豆| 亚洲另类在线视频| 91精品国产麻豆国产自产在线 | 91日韩在线专区| 亚洲电影一区二区三区| 欧美高清视频不卡网| 黑人精品欧美一区二区蜜桃| 欧美国产禁国产网站cc| 91国内精品野花午夜精品| 日韩国产欧美三级| 久久中文字幕电影| 色视频一区二区| 奇米精品一区二区三区在线观看一| 久久品道一品道久久精品| 成av人片一区二区| 日韩精品电影一区亚洲| 日本一区二区三区国色天香| 色偷偷久久一区二区三区| 日韩高清在线电影| 国产精品网站在线| 欧美精品99久久久**| 国产一区999| 夜夜嗨av一区二区三区网页| 欧美一区二区大片| 99re成人精品视频| 久久99精品久久久久| 一区二区三区av电影| 国产午夜亚洲精品理论片色戒| 欧美日韩在线三区| 高清不卡在线观看av| 石原莉奈在线亚洲二区| 国产精品国产自产拍高清av| 日韩三级视频在线看| 色就色 综合激情| 国产一区二区精品久久99| 亚洲亚洲精品在线观看| 国产精品久久久久久久午夜片| 日韩免费高清av| 一本久久综合亚洲鲁鲁五月天| 国产在线看一区| 亚洲成a人v欧美综合天堂| 国产精品乱码久久久久久| 欧美一区二区三区免费在线看 | 蜜臀av性久久久久蜜臀aⅴ流畅| 亚洲天堂网中文字| 久久嫩草精品久久久久| 欧美另类videos死尸| 天天色天天操综合| 久久久久国产精品免费免费搜索| 91国产成人在线| 国产一区91精品张津瑜| 奇米色一区二区| 亚洲欧美视频在线观看视频| 日韩一级二级三级精品视频| 欧美日韩国产综合草草| 粉嫩aⅴ一区二区三区四区五区| 亚洲成人一区在线| 国产欧美日本一区视频| 亚洲精品一线二线三线| 欧美色视频一区| 成人性生交大片免费看视频在线 | 成人美女在线观看| 国产精品性做久久久久久| 亚洲va欧美va国产va天堂影院| 国产精品丝袜在线| 欧美日韩国产首页| 欧美性色黄大片| 99久久免费精品| 国产主播一区二区| 久久不见久久见免费视频1| 亚洲午夜一区二区| 亚洲欧洲综合另类在线 |