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

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

?? combobox.js

?? 圖書管理系統(tǒng)包括圖書的增加、刪除、修改等功能
?? JS
?? 第 1 頁 / 共 2 頁
字號:
		highlightPrevOption: function(){			if(this._highlighted_option && this._highlighted_option.previousSibling){				this.focusOptionNode(this._highlighted_option.previousSibling);			}else{				this._highlighted_option = null;				this.hideResultList();				return;			}			this.scrollIntoView();		},			itemMouseOver: function(evt){			this.focusOptionNode(evt.target);			dojo.html.addClass(this._highlighted_option, "dojoComboBoxItemHighlight");		},			itemMouseOut: function(evt){			this.blurOptionNode();		},			fillInTemplate: function(args, frag){			// FIXME: need to get/assign DOM node names for form participation here.			this.comboBoxValue.name = this.name;			this.comboBoxSelectionValue.name = this.name+"_selected";				var source = this.getFragNodeRef(frag);			dojo.html.copyStyle(this.domNode, source);				var dpClass;			if(this.mode == "remote"){				dpClass = dojo.widget.incrementalComboBoxDataProvider;			}else if(typeof this.dataProviderClass == "string"){				dpClass = dojo.evalObjPath(this.dataProviderClass)			}else{				dpClass = this.dataProviderClass;			}			this.dataProvider = new dpClass();			this.dataProvider.init(this, this.getFragNodeRef(frag));				// Prevent IE bleed-through problem			this.optionsIframe = new dojo.html.BackgroundIframe(this.optionsListWrapper);			this.optionsIframe.size([0,0,0,0]);		},				focus: function(){			// summary			//	set focus to input node from code			this.tryFocus();		},			openResultList: function(results){			this.clearResultList();			if(!results.length){				this.hideResultList();			}				if(	(this.autoComplete)&&				(results.length)&&				(!this._prev_key_backspace)&&				(this.textInputNode.value.length > 0)){				var cpos = this.getCaretPos(this.textInputNode);				// only try to extend if we added the last character at the end of the input				if((cpos+1) > this.textInputNode.value.length){					// only add to input node as we would overwrite Capitalisation of chars					this.textInputNode.value += results[0][0].substr(cpos);					// build a new range that has the distance from the earlier					// caret position to the end of the first string selected					this.setSelectedRange(this.textInputNode, cpos, this.textInputNode.value.length);				}			}				var even = true;			while(results.length){				var tr = results.shift();				if(tr){					var td = document.createElement("div");					td.appendChild(document.createTextNode(tr[0]));					td.setAttribute("resultName", tr[0]);					td.setAttribute("resultValue", tr[1]);					td.className = "dojoComboBoxItem "+((even) ? "dojoComboBoxItemEven" : "dojoComboBoxItemOdd");					even = (!even);					this.optionsListNode.appendChild(td);					dojo.event.connect(td, "onmouseover", this, "itemMouseOver");					dojo.event.connect(td, "onmouseout", this, "itemMouseOut");				}			}				// show our list (only if we have content, else nothing)			this.showResultList();		},			onFocusInput: function(){			this._hasFocus = true;		},			onBlurInput: function(){			this._hasFocus = false;			this._handleBlurTimer(true, 500);		},			// collect all blur timers issues here		_handleBlurTimer: function(/*Boolean*/clear, /*Number*/ millisec){			if(this.blurTimer && (clear || millisec)){				clearTimeout(this.blurTimer);			}			if(millisec){ // we ignore that zero is false and never sets as that never happens in this widget				this.blurTimer = dojo.lang.setTimeout(this, "checkBlurred", millisec);			}		},			// these 2 are needed in IE and Safari as inputTextNode loses focus when scrolling optionslist		_onMouseOver: function(evt){			if(!this._mouseover_list){				this._handleBlurTimer(true, 0);				this._mouseover_list = true;			}		},			_onMouseOut:function(evt){			var relTarget = evt.relatedTarget;			if(!relTarget || relTarget.parentNode!=this.optionsListNode){				this._mouseover_list = false;				this._handleBlurTimer(true, 100);				this.tryFocus();			}		},			_isInputEqualToResult: function(result){			input = this.textInputNode.value;			if(!this.dataProvider.caseSensitive){				input = input.toLowerCase();				result = result.toLowerCase();			}			return (input == result);		},		_isValidOption: function(){			tgt = dojo.dom.firstElement(this.optionsListNode);			isValidOption = false;			while(!isValidOption && tgt){				if(this._isInputEqualToResult(tgt.getAttribute("resultName"))){					isValidOption = true;				}else{					tgt = dojo.dom.nextElement(tgt);				}			}			return isValidOption;		},		checkBlurred: function(){			if(!this._hasFocus && !this._mouseover_list){				this.hideResultList();				// clear the list if the user empties field and moves away.				if(!this.textInputNode.value.length){					this.setAllValues("", "");					return;				}								isValidOption = this._isValidOption();				// enforce selection from option list				if(this.forceValidOption && !isValidOption){					this.setAllValues("", "");					return;				}				if(!isValidOption){// clear					this.setSelectedValue("");				}			}		},			sizeBackgroundIframe: function(){			var w = dojo.style.getOuterWidth(this.optionsListNode);			var h = dojo.style.getOuterHeight(this.optionsListNode);			if( w==0 || h==0 ){				// need more time to calculate size				dojo.lang.setTimeout(this, "sizeBackgroundIframe", 100);				return;			}			if(this._result_list_open){				this.optionsIframe.size([0,0,w,h]);			}		},			selectOption: function(evt){			var tgt = null;			if(!evt){				evt = { target: this._highlighted_option };			}				if(!dojo.dom.isDescendantOf(evt.target, this.optionsListNode)){				// handle autocompletion where the the user has hit ENTER or TAB					// if the input is empty do nothing				if(!this.textInputNode.value.length){					return;				}				tgt = dojo.dom.firstElement(this.optionsListNode);					// user has input value not in option list				if(!tgt || !this._isInputEqualToResult(tgt.getAttribute("resultName"))){					return;				}				// otherwise the user has accepted the autocompleted value			}else{				tgt = evt.target; 			}				while((tgt.nodeType!=1)||(!tgt.getAttribute("resultName"))){				tgt = tgt.parentNode;				if(tgt === document.body){					return false;				}			}				this.textInputNode.value = tgt.getAttribute("resultName");			this.selectedResult = [tgt.getAttribute("resultName"), tgt.getAttribute("resultValue")];			this.setAllValues(tgt.getAttribute("resultName"), tgt.getAttribute("resultValue"));			if(!evt.noHide){				this.hideResultList();				this.setSelectedRange(this.textInputNode, 0, null);			}			this.tryFocus();		},			clearResultList: function(){			var oln = this.optionsListNode;			while(oln.firstChild){				dojo.event.disconnect(oln.firstChild, "onmouseover", this, "itemMouseOver");				dojo.event.disconnect(oln.firstChild, "onmouseout", this, "itemMouseOut");				oln.removeChild(oln.firstChild);			}		},			hideResultList: function(){			if(this._result_list_open){				this._result_list_open = false;				this.optionsIframe.size([0,0,0,0]);				dojo.lfx.fadeHide(this.optionsListNode, this.fadeTime).play();			}		},			showResultList: function(){			// Our dear friend IE doesnt take max-height so we need to calculate that on our own every time			var childs = this.optionsListNode.childNodes;			if(childs.length){				var visibleCount = this.maxListLength;				if(childs.length < visibleCount){					visibleCount = childs.length;				}					with(this.optionsListNode.style){					display = "";					height = ((visibleCount) ? (dojo.style.getOuterHeight(childs[0]) * visibleCount) : 0)+"px";					width = dojo.html.getOuterWidth(this.cbTableNode)-2+"px";				}				// only fadein once (flicker)				if(!this._result_list_open){					dojo.html.setOpacity(this.optionsListNode, 0);					dojo.lfx.fadeIn(this.optionsListNode, this.fadeTime).play();				}								// prevent IE bleed through				this._iframeTimer = dojo.lang.setTimeout(this, "sizeBackgroundIframe", 200);				this._result_list_open = true;			}else{				this.hideResultList();			}		},			handleArrowClick: function(){			this._handleBlurTimer(true, 0);			this.tryFocus();			if(this._result_list_open){				this.hideResultList();			}else{				this.startSearchFromInput();			}		},			tryFocus: function(){			try {				this.textInputNode.focus();			} catch (e) {				// element isn't focusable if disabled, or not visible etc - not easy to test for.	 		};		},				startSearchFromInput: function(){			this.startSearch(this.textInputNode.value);		},			postCreate: function(){			dojo.event.connect(this, "startSearch", this.dataProvider, "startSearch");			dojo.event.connect(this.dataProvider, "provideSearchResults", this, "openResultList");			dojo.event.connect(this.textInputNode, "onblur", this, "onBlurInput");			dojo.event.connect(this.textInputNode, "onfocus", this, "onFocusInput");				var s = dojo.widget.html.stabile.getState(this.widgetId);			if (s) {				this.setState(s);			}		}	});

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人免费视| 色婷婷综合在线| 国产美女视频一区| 91蜜桃免费观看视频| 欧美少妇性性性| 国产日韩成人精品| 日韩不卡免费视频| 91小视频免费看| 欧美成人性福生活免费看| 国产精品毛片久久久久久久| 性欧美疯狂xxxxbbbb| 成人综合在线视频| 精品国产制服丝袜高跟| 亚洲第一福利一区| www.欧美亚洲| 久久久www成人免费无遮挡大片| 亚洲国产一区视频| 99久久精品国产一区二区三区| 精品国产百合女同互慰| 无码av免费一区二区三区试看| av午夜精品一区二区三区| 欧美一级二级三级乱码| 亚洲精品高清在线| 94-欧美-setu| 欧美电视剧免费全集观看| 一区二区三区在线影院| 亚洲视频一区二区在线| 日韩和欧美一区二区三区| 一本到不卡精品视频在线观看| 久久午夜色播影院免费高清| 久久电影网站中文字幕| 91精品国产色综合久久不卡蜜臀| 亚洲女厕所小便bbb| 成人av网站在线观看免费| 国产亚洲1区2区3区| 免费精品99久久国产综合精品| 欧美在线你懂得| 亚洲一区二区三区自拍| 国产精品一二三在| 久久久久久久av麻豆果冻| 国产一区亚洲一区| 在线亚洲欧美专区二区| 久久免费美女视频| 成人av电影免费在线播放| 91精品国产欧美一区二区18| 亚洲va欧美va人人爽| 在线中文字幕不卡| 国产精品免费aⅴ片在线观看| 日韩国产在线观看一区| 日韩一区二区三区三四区视频在线观看| 一区二区三区视频在线观看| 91社区在线播放| 一区二区三区成人| 一本到不卡精品视频在线观看| 亚洲欧美在线高清| 色综合久久中文字幕综合网| 一级做a爱片久久| 欧美三区在线观看| 日本成人在线看| 久久久久久亚洲综合| 成人av先锋影音| 亚洲va国产天堂va久久en| 884aa四虎影成人精品一区| 蜜桃视频一区二区三区在线观看| 精品欧美久久久| 成人教育av在线| 五月天一区二区| 久久久不卡网国产精品一区| 成人污视频在线观看| 夜夜夜精品看看| 日韩免费观看高清完整版在线观看| 蜜桃视频一区二区三区| 中文子幕无线码一区tr| 欧美性生活影院| 九色porny丨国产精品| 中文字幕不卡一区| 欧美日韩久久久| 国产麻豆视频一区| 最好看的中文字幕久久| 欧美日韩国产区一| 久久精品国产久精国产| 成人欧美一区二区三区视频网页| 在线观看亚洲精品视频| 日韩激情视频网站| 亚洲欧洲99久久| 欧美mv日韩mv国产网站| 色婷婷综合在线| 国产风韵犹存在线视精品| 亚洲国产精品综合小说图片区| 2022国产精品视频| 欧美亚洲日本一区| 国产不卡在线一区| 午夜精品aaa| 亚洲免费资源在线播放| 久久精品水蜜桃av综合天堂| 欧美放荡的少妇| 一本高清dvd不卡在线观看 | 欧美高清一级片在线观看| 欧美亚洲综合一区| www.色综合.com| 国产麻豆精品theporn| 日日夜夜免费精品| 亚洲精品国产视频| 国产精品色噜噜| 精品国产一区二区在线观看| 欧美精品久久一区二区三区| 99精品偷自拍| 成人免费av资源| 国产一区二区三区免费观看| 日本在线不卡视频一二三区| 亚洲成人资源网| 亚洲精品视频在线| 亚洲欧洲日韩一区二区三区| 久久女同性恋中文字幕| 日韩欧美成人一区二区| 91精品国产综合久久久久久久 | 欧美成人在线直播| 欧美日韩中文字幕一区| 91在线免费播放| 成人免费看片app下载| 国产成人亚洲综合a∨猫咪| 精品一区二区在线免费观看| 麻豆传媒一区二区三区| 久久精品国产精品青草| 日韩高清在线不卡| 日本中文字幕一区二区有限公司| 午夜精品免费在线| 亚洲va欧美va人人爽| 亚洲成人动漫在线观看| 婷婷开心久久网| 午夜一区二区三区在线观看| 亚洲国产欧美在线人成| 亚洲18色成人| 美国十次综合导航| 精品亚洲porn| 国产精品99久久不卡二区| 丁香亚洲综合激情啪啪综合| 成人午夜伦理影院| 91视频在线观看| 在线欧美日韩精品| 欧美日韩精品专区| 日韩午夜在线影院| 欧美精品一区二区三区在线播放 | 欧美日韩小视频| 欧美久久婷婷综合色| 在线播放91灌醉迷j高跟美女| 制服丝袜在线91| 精品国产凹凸成av人网站| 国产精品乱码一区二区三区软件 | 精品一区二区综合| 国产成人精品免费在线| av成人免费在线观看| 欧洲视频一区二区| 欧美一区二区视频在线观看2020| 精品三级av在线| 国产精品二三区| 性做久久久久久| 国产一区二区三区国产| 99re成人在线| 日韩一区二区三区视频| 国产精品麻豆久久久| 视频一区二区国产| 盗摄精品av一区二区三区| 在线观看日韩电影| xvideos.蜜桃一区二区| 亚洲视频一区二区在线观看| 蜜臀av性久久久久蜜臀aⅴ流畅 | 久久国产乱子精品免费女| 岛国av在线一区| 欧美日韩高清在线播放| 国产三级精品视频| 国产在线观看一区二区| 99re8在线精品视频免费播放| 欧美高清激情brazzers| 国产精品视频第一区| 日韩电影在线免费看| 99视频一区二区| 精品久久免费看| 亚洲成人av免费| eeuss鲁片一区二区三区在线看| 欧美日韩午夜在线视频| 日本一区二区三级电影在线观看| 亚洲h在线观看| 色av成人天堂桃色av| 久久精品亚洲乱码伦伦中文| 婷婷国产v国产偷v亚洲高清| 99国产精品99久久久久久| 久久这里只有精品首页| 午夜久久福利影院| 色婷婷国产精品| 日本一区二区成人| 精品一二三四在线| 欧美肥妇bbw| 亚洲欧美日韩一区二区三区在线观看| 韩国成人精品a∨在线观看| 欧美久久久久久久久| 一区二区日韩电影| thepron国产精品| 国产日韩v精品一区二区| 久久福利资源站|