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

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

?? toc.js

?? 用java寫的外匯交易客戶端
?? JS
字號:
/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *  * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/ // Common scripts for IE and Mozilla.var isMozilla = navigator.userAgent.indexOf('Mozilla') != -1 && parseInt(navigator.appVersion.substring(0,1)) >= 5;var isIE = navigator.userAgent.indexOf('MSIE') != -1;var oldActive;var oldActiveClass = "";// Preload images// **********************************************************// Note: code moved into the jsp, for dynamic image preferences/** * Returns the target node of an event */function getTarget(e) {	var target;  	if (isMozilla)  		target = e.target;  	else if (isIE)   		target = window.event.srcElement;	return target;}/** * Returns the next tree node "down" from current one */function getNextDown(node){	var a = getAnchorNode(node);	if (!a) return null;			// Try visible child first	var li = a.parentNode;	var ul = getChildNode(li, "UL");	if (ul && ul.className == "expanded")		return getDescendantNode(ul, "A");		// Try next sibling	var li_sib = getNextSibling(li);	if (li_sib != null)		return getDescendantNode(li_sib, "A");			// Try looking to parent's sibling	while(li_sib == null) {		var ul = li.parentNode;		li = ul.parentNode;		if (li.tagName != "LI") // reached the top, nothing else to do			return null;					li_sib = getNextSibling(li);			}			// found the next down sibling	return getDescendantNode(li_sib, "A");		}/** * Returns the next tree node "down" from current one */function getNextUp(node){	var a = getAnchorNode(node);	if (!a) return null;			// Get previous sibling first	var li = a.parentNode;	var li_sib = getPrevSibling(li);	if (li_sib != null) {		// try to get the deepest node that preceeds this current node		var candidate = getDescendantNode(li_sib, "A");		var nextDown = getNextDown(candidate);		while(nextDown != null && nextDown != node){			candidate = nextDown;			nextDown = getNextDown(nextDown);		}		return getDescendantNode(candidate, "A");	;	} else {		// get the parent		var li = li.parentNode.parentNode;		if (li && li.tagName == "LI")			return getDescendantNode(li, "A");		else			return null;	}}/** * Returns the next sibling element */function getNextSibling(node) {	var sib = node.nextSibling;	while (sib && (sib.nodeType == 3 || sib.tagName=="SCRIPT")) // text or script node		sib = sib.nextSibling;	return sib;}/** * Returns the next sibling element */function getPrevSibling(node) {	var sib = node.previousSibling;	while (sib && (sib.nodeType == 3 || sib.tagName=="SCRIPT")) // text or script node		sib = sib.previousSibling;	return sib;}/** * Returns the child node with specified tag */function getChildNode(parent, childTag){	var list = parent.childNodes;	if (list == null) return null;	for (var i=0; i<list.length; i++)		if (list.item(i).tagName == childTag)			return list.item(i);	return null;}/** * Returns the descendat node with specified tag (depth-first searches) */function getDescendantNode(parent, childTag){		if (parent == null) return null;		if (parent.tagName == childTag)		return parent;			var list = parent.childNodes;	if (list == null) return null;	for (var i=0; i<list.length; i++) {		var child = list.item(i);		if(child.tagName == childTag)			return child;				child = getDescendantNode(child, childTag);		if (child != null)			return child;	}	return null;}/** * Returns the anchor of this click * NOTE: MOZILLA BUG WITH A:focus and A:active styles */function getAnchorNode(node) {  if (node == null) return null;     if (node.nodeType == 3)  //"Node.TEXT_NODE") 	return node.parentNode;  else if (node.tagName == "A")     return node;  else if (node.tagName == "IMG")  	return getChildNode(node.parentNode, "A");  return null;}/** * Returns the plus/minus icon for this tree node */function getPlusMinus(node){	if (isPlusMinus(node))		return node;  	else if (node.nodeType == 3)  //"Node.TEXT_NODE") 		return getChildNode(node.parentNode.parentNode, "IMG");	else if (node.tagName == "IMG")    	return getChildNode(node.parentNode.parentNode, "IMG");  	else if (node.tagName == "A")     	return getChildNode(node.parentNode, "IMG"); 	return null;}/** * Returns true when the node is the plus or minus icon */function isPlusMinus(node){	return (node.nodeType != 3 && node.tagName == "IMG" && (node.className == "expanded" || node.className == "collapsed"));}/** * Collapses a tree rooted at the specified element */function collapse(node) {  node.className = "collapsed";  node.src = plus.src;  node.alt = altTopicClosed;  // set the UL as well  var ul = getChildNode(node.parentNode, "UL");  if (ul != null) ul.className = "collapsed";}/** * Expands a tree rooted at the specified element */function expand(node) {  	node.className = "expanded";  	node.src = minus.src;    node.alt = altTopicOpen;  	// set the UL as well  	var ul = getChildNode(node.parentNode, "UL");  	if (ul != null){  		ul.className = "expanded";  		if (ul.id.length > 0){  			if (!frames.dynLoadFrame) {  				return;  			}  			var ix = window.location.href.indexOf('?');  			if (ix < 0) {  				return;  			}  			var query = window.location.href.substr(ix);  			frames.dynLoadFrame.location = "tocFragment.jsp" + query + "&path=" + ul.id;  		}  	}}/** * Expands the nodes from root to the specified node */function expandPathTo(node, inclusive){	// when the node is a link, get the plus/minus image	if (node.tagName == "A") 	{		var img = getChildNode(node.parentNode, "IMG")		if (img == null) return;		expandPathTo(img, inclusive);		return;	}		if (inclusive && isCollapsed(node))		expand(node);			var li = node.parentNode;	if (li == null) return;	var ul = li.parentNode;	if (ul == null) return;	li = ul.parentNode;	if (li == null) return;	var img = getChildNode(li, "IMG");	if (img == null) return;			expandPathTo(img, true);}/** * Returns true when this is an expanded tree node */function isExpanded(node) {  return node.className == "expanded";}/** * Returns true when this is a collapsed tree node */function isCollapsed(node) {  return  node.className == "collapsed";}/** * Highlights link */function highlightTopic(topic){	if (isMozilla)		window.getSelection().removeAllRanges();  	var a = getAnchorNode(topic);   	if (a != null)  	{  	  	parent.parent.parent.setContentToolbarTitle(tocTitle);  	  	if (oldActive)   	  		oldActive.className = oldActiveClass;  		oldActive = a;  		oldActiveClass = a.className;  		a.className = "active";  		// it looks like the onclick event is not handled in mozilla  		// *** TO DO: handle failed synchronization, do not select in that case  		if (isMozilla && a.onclick)   			a.onclick()  		//if (isIE)  		//	a.hideFocus = "true";  	}}/** * Selects a topic in the tree: expand tree and highlight it * returns true if success */function selectTopic(topic){	if (!topic)		return false;			// remove the query, if any	var i = topic.indexOf('?');	if (i != -1)		topic = topic.substring(0, i);	var links = document.getElementsByTagName("a");	for (var i=0; i<links.length; i++)	{		if (topic == links[i].href)		{			expandPathTo(links[i], false);			highlightTopic(links[i]);			scrollIntoView(links[i]);			return true;		}	}	return false;}/** * Selects a topic in the tree: expand tree and highlight it * returns true if success */function selectTopicById(id){	var topic = document.getElementById(id);	if (topic)	{		expandPathTo(topic, false);		highlightTopic(topic);		scrollIntoView(topic);		return true;	}	return false;}/** * Scrolls the page to show the specified element */function scrollIntoView(node){	var scroll = getVerticalScroll(node);	if (scroll != 0)		window.scrollBy(0, scroll);}/** * Scrolls the page to show the specified element */function getVerticalScroll(node){	var nodeTop = node.offsetTop;	var nodeBottom = nodeTop + node.offsetHeight;	var pageTop = 0;	var pageBottom = 0;		if (isIE)	{		pageTop = document.body.scrollTop; 		pageBottom = pageTop + document.body.clientHeight;		} 	else if (isMozilla)	{		pageTop = window.pageYOffset;		pageBottom = pageTop + window.innerHeight - node.offsetHeight;	}		var scroll = 0;	if (nodeTop >= pageTop )	{		if (nodeBottom <= pageBottom)			scroll = 0; // already in view		else			scroll = nodeBottom - pageBottom;	}	else	{		scroll = nodeTop - pageTop;	}		return scroll;}/* * Currently called on IE only */function focusHandler(e){	/*if (isMozilla)		return;	*/			try{		if (oldActive){			// only focus when the element is visible			var scroll = getVerticalScroll(oldActive);			if (scroll == 0)				oldActive.focus();		}			}	catch(e){}}/** * display topic label in the status line on mouse over topic */function mouseMoveHandler(e) {	var overNode = getTarget(e); 	if (!overNode) return;  		overNode = getAnchorNode(overNode);	  if (overNode == null){	   window.status = "";	   return;	  } 	if (isMozilla)		e.cancelBubble = false;  	 	if (overNode.title == "") {		if (overNode.innerText)			overNode.title = overNode.innerText;		else if (overNode.text)			overNode.title = overNode.text;	}	window.status = overNode.title;}/** * handler for expanding / collapsing topic tree */function mouseClickHandler(e) {  	var clickedNode = getTarget(e);  	if (isPlusMinus(clickedNode) )  	{	    	if (isCollapsed(clickedNode))    			expand(clickedNode);  		else if (isExpanded(clickedNode))   	  		collapse(clickedNode);  	}  	else  	{  		var plus_minus = getPlusMinus(clickedNode);  		if (plus_minus != null)  			highlightTopic(plus_minus);  	}  	  	if (isMozilla)  		e.cancelBubble = true;  	else if (isIE)  		window.event.cancelBubble = true;}/** * handler for expanding / collapsing topic tree */function mouseDblClickHandler(e) {  	var clickedNode = getTarget(e);  	if (!clickedNode) return;  	var plus_minus = getPlusMinus(clickedNode);  	if (plus_minus != null)  	{	    	if (isCollapsed(plus_minus))    			expand(plus_minus);  		else if (isExpanded(plus_minus))   	  		collapse(plus_minus);  	  		  		    		highlightTopic(plus_minus);  	}    	if (isMozilla)  		e.cancelBubble = true;  	else if (isIE)  		window.event.cancelBubble = true;}/** * Handler for key down (arrows) */function keyDownHandler(e){	var key;	if (isIE) {		key = window.event.keyCode;	} else if (isMozilla) {		key = e.keyCode;	}			if (key <37 || key > 40) 		return true;		if (isMozilla)  		e.cancelBubble = true;  	else if (isIE)  		window.event.cancelBubble = true;  		  	if (key == 39) { // Right arrow, expand		var clickedNode = getTarget(e);  		if (!clickedNode) return;  		if (isIE){			if(clickedNode.id!=null){				if(clickedNode.id.charAt(0)=='b'){					if(clickedNode.name!="opened"){						loadTOC(clickedNode.name);						return true;					}				}			}		}  		var plus_minus = getPlusMinus(clickedNode);  		if (plus_minus != null)  		{	    		if (isCollapsed(plus_minus))    				expand(plus_minus);  			  			highlightTopic(plus_minus);  			scrollIntoView(clickedNode);  		}  	} else if (key == 37) { // Left arrow,collapse		var clickedNode = getTarget(e);  		if (!clickedNode) return;  		  		if(clickedNode.id!=null){  			if(clickedNode.id.charAt(0)=='b'){				if(clickedNode.name=="opened"){					loadTOC(" ");					return true;				}				else{ 						return true;				}			}					}  		var plus_minus = getPlusMinus(clickedNode);  		if (plus_minus != null)  		{	    		if (isExpanded(plus_minus))    				collapse(plus_minus);  			  			highlightTopic(plus_minus);  			scrollIntoView(clickedNode);  		}  	} else if (key == 40 ) { // down arrow  		var clickedNode = getTarget(e);  		if (!clickedNode) return;		var next = getNextDown(clickedNode);		if (next)			next.focus();  	} else if (key == 38 ) { // up arrow  		var clickedNode = getTarget(e);  		if (!clickedNode) return;		var next = getNextUp(clickedNode);		if (next)			next.focus();  	}  	  	 			  	return true;}if (isMozilla) {  document.addEventListener('click', mouseClickHandler, true);  document.addEventListener('dblclick', mouseDblClickHandler, true);  document.addEventListener('mousemove', mouseMoveHandler, true);  document.addEventListener('keydown', keyDownHandler, true);}else if (isIE){  document.onclick = mouseClickHandler;  document.ondblclick = mouseDblClickHandler;  document.onmousemove = mouseMoveHandler;  document.onkeydown = keyDownHandler;  //window.onfocus = focusHandler;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区丝袜| 亚洲视频一区二区在线| 久久精品国产一区二区三| 欧美精三区欧美精三区| 人禽交欧美网站| 欧美精品一区二区在线播放 | 色狠狠综合天天综合综合| 亚洲黄色性网站| 欧美日韩中文精品| 久久疯狂做爰流白浆xx| 国产女人aaa级久久久级 | 制服丝袜成人动漫| 狠狠色综合日日| 国产精品久久影院| 欧美欧美欧美欧美| 国产精品66部| 一区二区三区不卡在线观看| 日韩一区二区三区视频在线| 国产盗摄一区二区三区| 亚洲一区二区精品久久av| 日韩欧美一级二级三级久久久| 国产精品99久久久久久久vr| 亚洲精品欧美激情| 欧美变态tickling挠脚心| 成人app软件下载大全免费| 日韩国产成人精品| 最新不卡av在线| 欧美电视剧在线观看完整版| 成人免费毛片嘿嘿连载视频| 午夜欧美视频在线观看| 亚洲国产精品成人综合色在线婷婷 | 欧美乱熟臀69xxxxxx| 国产ts人妖一区二区| 日韩不卡一区二区三区 | 色偷偷久久人人79超碰人人澡| 日韩中文字幕一区二区三区| 中文字幕电影一区| 日韩亚洲欧美高清| 欧美影院午夜播放| av午夜精品一区二区三区| 麻豆精品精品国产自在97香蕉| 亚洲男人的天堂av| 国产日韩欧美精品电影三级在线| 欧美三级电影一区| 99精品欧美一区二区三区综合在线| 日本亚洲电影天堂| 亚洲国产综合在线| 中文字幕亚洲精品在线观看| 精品国产123| 3d动漫精品啪啪1区2区免费| 91精彩视频在线| 成人毛片视频在线观看| 久久97超碰国产精品超碰| 亚洲成av人片一区二区三区 | 亚洲男女毛片无遮挡| 久久精品欧美一区二区三区不卡| 日韩小视频在线观看专区| 欧美在线免费播放| 91在线你懂得| av一区二区三区黑人| 成人网男人的天堂| 国产91精品免费| 国产成人自拍高清视频在线免费播放| 日韩国产精品大片| 日韩黄色小视频| 天堂在线一区二区| 午夜久久电影网| 亚洲成国产人片在线观看| 一区二区高清免费观看影视大全| 亚洲国产高清aⅴ视频| 欧美激情在线一区二区| 国产欧美一区二区精品秋霞影院| 久久亚洲综合色| 久久女同精品一区二区| 久久久国产午夜精品| 久久久www成人免费无遮挡大片 | 欧美巨大另类极品videosbest | 欧美在线色视频| 欧美色区777第一页| 欧美天天综合网| 欧美日韩成人一区| 91精品国产综合久久久蜜臀粉嫩| 欧美日韩dvd在线观看| 在线电影一区二区三区| 日韩视频在线你懂得| 欧美mv和日韩mv国产网站| 国产日韩欧美一区二区三区乱码 | 欧美日韩高清影院| 欧美一级xxx| 国产午夜精品一区二区三区嫩草| 国产视频一区在线播放| 国产精品午夜免费| 一区二区免费在线| 日韩avvvv在线播放| 狠狠色狠狠色综合系列| www.亚洲色图| 欧美日韩精品欧美日韩精品| 日韩一区二区电影网| 久久精品男人天堂av| 亚洲日本在线a| 午夜视频在线观看一区二区| 久久国产欧美日韩精品| caoporn国产精品| 欧美性受xxxx黑人xyx性爽| 日韩一区二区三区四区五区六区| 国产目拍亚洲精品99久久精品| 亚洲欧洲av在线| 青青草97国产精品免费观看无弹窗版| 国精品**一区二区三区在线蜜桃| 99久久国产免费看| 欧美一区二区三区免费大片| 国产亚洲女人久久久久毛片| 亚洲精品视频一区二区| 美国欧美日韩国产在线播放| 91在线视频免费91| 日韩西西人体444www| 中文字幕日本不卡| 免费在线看一区| 91麻豆成人久久精品二区三区| 欧美一卡二卡三卡四卡| 日韩一区欧美小说| 国内精品国产成人国产三级粉色| 色综合天天综合狠狠| 欧美电影免费观看高清完整版| 亚洲乱码国产乱码精品精的特点| 久久精品国产999大香线蕉| 97久久超碰国产精品| 欧美大片在线观看| 亚洲最大成人综合| 成a人片国产精品| 久久天天做天天爱综合色| 亚洲国产va精品久久久不卡综合| 成人av资源站| 久久久亚洲精品石原莉奈| 日韩电影一二三区| 欧美在线综合视频| 亚洲图片你懂的| 国产大陆亚洲精品国产| 日韩欧美一区在线| 日本系列欧美系列| 精品视频一区二区不卡| 亚洲欧美日韩中文播放| 国产成人8x视频一区二区| 日韩欧美二区三区| 日韩国产欧美在线视频| 在线观看免费亚洲| 亚洲欧美国产三级| 99久久久免费精品国产一区二区 | 91麻豆视频网站| 欧美国产日产图区| 国产不卡在线播放| 国产欧美日韩不卡| 精品一区二区久久| 欧美电影免费观看完整版| 免费高清成人在线| 欧美一区二区三区在| 人妖欧美一区二区| 日韩亚洲欧美中文三级| 免费黄网站欧美| 精品国产乱码久久久久久1区2区| 欧美aa在线视频| 日韩一区二区视频在线观看| 日本 国产 欧美色综合| 日韩色视频在线观看| 美女视频黄 久久| 久久综合色8888| 国产成人在线观看免费网站| 国产日韩精品一区二区三区| 国产ts人妖一区二区| 国产精品色婷婷久久58| www.亚洲免费av| 亚洲精品欧美激情| 欧美三级视频在线观看| 日日摸夜夜添夜夜添亚洲女人| 欧美一区二区在线免费观看| 久久激情五月激情| 久久久久久99久久久精品网站| 国产69精品久久777的优势| 国产精品久久看| 欧美视频在线不卡| 老司机一区二区| 久久久99久久| 色婷婷精品久久二区二区蜜臂av| 亚洲精品自拍动漫在线| 欧美色倩网站大全免费| 日本91福利区| 国产亚洲美州欧州综合国| 99久久99精品久久久久久| 亚洲国产精品欧美一二99| 日韩精品一区二区三区在线观看| 紧缚奴在线一区二区三区| 中文字幕欧美日本乱码一线二线 | 国产高清亚洲一区| 国产精品国产三级国产普通话蜜臀 | 久久精品水蜜桃av综合天堂| 99热在这里有精品免费| 亚洲成精国产精品女| 国产亚洲一区二区在线观看| 色综合一个色综合| 九九九精品视频|