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

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

?? spellchecker.js

?? 360理財(cái)網(wǎng)免費(fèi)個(gè)人理財(cái)軟件源代碼,簡單的php編程,供大家學(xué)習(xí)
?? JS
字號(hào):
?////////////////////////////////////////////////////
// spellChecker.js
//
// spellChecker object
//
// This file is sourced on web pages that have a textarea object to evaluate
// for spelling. It includes the implementation for the spellCheckObject.
//
////////////////////////////////////////////////////


// constructor
function spellChecker( textObject ) {

	// public properties - configurable
//	this.popUpUrl = '/speller/spellchecker.html';							// by FredCK
	this.popUpUrl = 'fck_spellerpages/spellerpages/spellchecker.html';		// by FredCK
	this.popUpName = 'spellchecker';
//	this.popUpProps = "menu=no,width=440,height=350,top=70,left=120,resizable=yes,status=yes";	// by FredCK
	this.popUpProps = null ;																	// by FredCK
//	this.spellCheckScript = '/speller/server-scripts/spellchecker.php';		// by FredCK
	//this.spellCheckScript = '/cgi-bin/spellchecker.pl';

	// values used to keep track of what happened to a word
	this.replWordFlag = "R";	// single replace
	this.ignrWordFlag = "I";	// single ignore
	this.replAllFlag = "RA";	// replace all occurances
	this.ignrAllFlag = "IA";	// ignore all occurances
	this.fromReplAll = "~RA";	// an occurance of a "replace all" word
	this.fromIgnrAll = "~IA";	// an occurance of a "ignore all" word
	// properties set at run time
	this.wordFlags = new Array();
	this.currentTextIndex = 0;
	this.currentWordIndex = 0;
	this.spellCheckerWin = null;
	this.controlWin = null;
	this.wordWin = null;
	this.textArea = textObject;	// deprecated
	this.textInputs = arguments;

	// private methods
	this._spellcheck = _spellcheck;
	this._getSuggestions = _getSuggestions;
	this._setAsIgnored = _setAsIgnored;
	this._getTotalReplaced = _getTotalReplaced;
	this._setWordText = _setWordText;
	this._getFormInputs = _getFormInputs;

	// public methods
	this.openChecker = openChecker;
	this.startCheck = startCheck;
	this.checkTextBoxes = checkTextBoxes;
	this.checkTextAreas = checkTextAreas;
	this.spellCheckAll = spellCheckAll;
	this.ignoreWord = ignoreWord;
	this.ignoreAll = ignoreAll;
	this.replaceWord = replaceWord;
	this.replaceAll = replaceAll;
	this.terminateSpell = terminateSpell;
	this.undo = undo;

	// set the current window's "speller" property to the instance of this class.
	// this object can now be referenced by child windows/frames.
	window.speller = this;
}

// call this method to check all text boxes (and only text boxes) in the HTML document
function checkTextBoxes() {
	this.textInputs = this._getFormInputs( "^text$" );
	this.openChecker();
}

// call this method to check all textareas (and only textareas ) in the HTML document
function checkTextAreas() {
	this.textInputs = this._getFormInputs( "^textarea$" );
	this.openChecker();
}

// call this method to check all text boxes and textareas in the HTML document
function spellCheckAll() {
	this.textInputs = this._getFormInputs( "^text(area)?$" );
	this.openChecker();
}

// call this method to check text boxe(s) and/or textarea(s) that were passed in to the
// object's constructor or to the textInputs property
function openChecker() {
	this.spellCheckerWin = window.open( this.popUpUrl, this.popUpName, this.popUpProps );
	if( !this.spellCheckerWin.opener ) {
		this.spellCheckerWin.opener = window;
	}
}

function startCheck( wordWindowObj, controlWindowObj ) {

	// set properties from args
	this.wordWin = wordWindowObj;
	this.controlWin = controlWindowObj;

	// reset properties
	this.wordWin.resetForm();
	this.controlWin.resetForm();
	this.currentTextIndex = 0;
	this.currentWordIndex = 0;
	// initialize the flags to an array - one element for each text input
	this.wordFlags = new Array( this.wordWin.textInputs.length );
	// each element will be an array that keeps track of each word in the text
	for( var i=0; i<this.wordFlags.length; i++ ) {
		this.wordFlags[i] = [];
	}

	// start
	this._spellcheck();

	return true;
}

function ignoreWord() {
	var wi = this.currentWordIndex;
	var ti = this.currentTextIndex;
	if( !this.wordWin ) {
		alert( 'Error: Word frame not available.' );
		return false;
	}
	if( !this.wordWin.getTextVal( ti, wi )) {
		alert( 'Error: "Not in dictionary" text is missing.' );
		return false;
	}
	// set as ignored
	if( this._setAsIgnored( ti, wi, this.ignrWordFlag )) {
		this.currentWordIndex++;
		this._spellcheck();
	}
	return true;
}

function ignoreAll() {
	var wi = this.currentWordIndex;
	var ti = this.currentTextIndex;
	if( !this.wordWin ) {
		alert( 'Error: Word frame not available.' );
		return false;
	}
	// get the word that is currently being evaluated.
	var s_word_to_repl = this.wordWin.getTextVal( ti, wi );
	if( !s_word_to_repl ) {
		alert( 'Error: "Not in dictionary" text is missing' );
		return false;
	}

	// set this word as an "ignore all" word.
	this._setAsIgnored( ti, wi, this.ignrAllFlag );

	// loop through all the words after this word
	for( var i = ti; i < this.wordWin.textInputs.length; i++ ) {
		for( var j = 0; j < this.wordWin.totalWords( i ); j++ ) {
			if(( i == ti && j > wi ) || i > ti ) {
				// future word: set as "from ignore all" if
				// 1) do not already have a flag and
				// 2) have the same value as current word
				if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl )
				&& ( !this.wordFlags[i][j] )) {
					this._setAsIgnored( i, j, this.fromIgnrAll );
				}
			}
		}
	}

	// finally, move on
	this.currentWordIndex++;
	this._spellcheck();
	return true;
}

function replaceWord() {
	var wi = this.currentWordIndex;
	var ti = this.currentTextIndex;
	if( !this.wordWin ) {
		alert( 'Error: Word frame not available.' );
		return false;
	}
	if( !this.wordWin.getTextVal( ti, wi )) {
		alert( 'Error: "Not in dictionary" text is missing' );
		return false;
	}
	if( !this.controlWin.replacementText ) {
		return false ;
	}
	var txt = this.controlWin.replacementText;
	if( txt.value ) {
		var newspell = new String( txt.value );
		if( this._setWordText( ti, wi, newspell, this.replWordFlag )) {
			this.currentWordIndex++;
			this._spellcheck();
		}
	}
	return true;
}

function replaceAll() {
	var ti = this.currentTextIndex;
	var wi = this.currentWordIndex;
	if( !this.wordWin ) {
		alert( 'Error: Word frame not available.' );
		return false;
	}
	var s_word_to_repl = this.wordWin.getTextVal( ti, wi );
	if( !s_word_to_repl ) {
		alert( 'Error: "Not in dictionary" text is missing' );
		return false;
	}
	var txt = this.controlWin.replacementText;
	if( !txt.value ) return false;
	var newspell = new String( txt.value );

	// set this word as a "replace all" word.
	this._setWordText( ti, wi, newspell, this.replAllFlag );

	// loop through all the words after this word
	for( var i = ti; i < this.wordWin.textInputs.length; i++ ) {
		for( var j = 0; j < this.wordWin.totalWords( i ); j++ ) {
			if(( i == ti && j > wi ) || i > ti ) {
				// future word: set word text to s_word_to_repl if
				// 1) do not already have a flag and
				// 2) have the same value as s_word_to_repl
				if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl )
				&& ( !this.wordFlags[i][j] )) {
					this._setWordText( i, j, newspell, this.fromReplAll );
				}
			}
		}
	}

	// finally, move on
	this.currentWordIndex++;
	this._spellcheck();
	return true;
}

function terminateSpell() {
	// called when we have reached the end of the spell checking.
	var msg = "";		// by FredCK
	var numrepl = this._getTotalReplaced();
	if( numrepl == 0 ) {
		// see if there were no misspellings to begin with
		if( !this.wordWin ) {
			msg = "";
		} else {
			if( this.wordWin.totalMisspellings() ) {
//				msg += "No words changed.";			// by FredCK
				msg += FCKLang.DlgSpellNoChanges ;	// by FredCK
			} else {
//				msg += "No misspellings found.";	// by FredCK
				msg += FCKLang.DlgSpellNoMispell ;	// by FredCK
			}
		}
	} else if( numrepl == 1 ) {
//		msg += "One word changed.";			// by FredCK
		msg += FCKLang.DlgSpellOneChange ;	// by FredCK
	} else {
//		msg += numrepl + " words changed.";	// by FredCK
		msg += FCKLang.DlgSpellManyChanges.replace( /%1/g, numrepl ) ;
	}
	if( msg ) {
//		msg += "\n";	// by FredCK
		alert( msg );
	}

	if( numrepl > 0 ) {
		// update the text field(s) on the opener window
		for( var i = 0; i < this.textInputs.length; i++ ) {
			// this.textArea.value = this.wordWin.text;
			if( this.wordWin ) {
				if( this.wordWin.textInputs[i] ) {
					this.textInputs[i].value = this.wordWin.textInputs[i];
				}
			}
		}
	}

	// return back to the calling window
//	this.spellCheckerWin.close();					// by FredCK
	if ( typeof( this.OnFinished ) == 'function' )	// by FredCK
		this.OnFinished(numrepl) ;					// by FredCK

	return true;
}

function undo() {
	// skip if this is the first word!
	var ti = this.currentTextIndex;
	var wi = this.currentWordIndex;

	if( this.wordWin.totalPreviousWords( ti, wi ) > 0 ) {
		this.wordWin.removeFocus( ti, wi );

		// go back to the last word index that was acted upon
		do {
			// if the current word index is zero then reset the seed
			if( this.currentWordIndex == 0 && this.currentTextIndex > 0 ) {
				this.currentTextIndex--;
				this.currentWordIndex = this.wordWin.totalWords( this.currentTextIndex )-1;
				if( this.currentWordIndex < 0 ) this.currentWordIndex = 0;
			} else {
				if( this.currentWordIndex > 0 ) {
					this.currentWordIndex--;
				}
			}
		} while (
			this.wordWin.totalWords( this.currentTextIndex ) == 0
			|| this.wordFlags[this.currentTextIndex][this.currentWordIndex] == this.fromIgnrAll
			|| this.wordFlags[this.currentTextIndex][this.currentWordIndex] == this.fromReplAll
		);

		var text_idx = this.currentTextIndex;
		var idx = this.currentWordIndex;
		var preReplSpell = this.wordWin.originalSpellings[text_idx][idx];

		// if we got back to the first word then set the Undo button back to disabled
		if( this.wordWin.totalPreviousWords( text_idx, idx ) == 0 ) {
			this.controlWin.disableUndo();
		}

		var i, j, origSpell ;
		// examine what happened to this current word.
		switch( this.wordFlags[text_idx][idx] ) {
			// replace all: go through this and all the future occurances of the word
			// and revert them all to the original spelling and clear their flags
			case this.replAllFlag :
				for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) {
					for( j = 0; j < this.wordWin.totalWords( i ); j++ ) {
						if(( i == text_idx && j >= idx ) || i > text_idx ) {
							origSpell = this.wordWin.originalSpellings[i][j];
							if( origSpell == preReplSpell ) {
								this._setWordText ( i, j, origSpell, undefined );
							}
						}
					}
				}
				break;

			// ignore all: go through all the future occurances of the word
			// and clear their flags
			case this.ignrAllFlag :
				for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) {
					for( j = 0; j < this.wordWin.totalWords( i ); j++ ) {
						if(( i == text_idx && j >= idx ) || i > text_idx ) {
							origSpell = this.wordWin.originalSpellings[i][j];
							if( origSpell == preReplSpell ) {
								this.wordFlags[i][j] = undefined;
							}
						}
					}
				}
				break;

			// replace: revert the word to its original spelling
			case this.replWordFlag :
				this._setWordText ( text_idx, idx, preReplSpell, undefined );
				break;
		}

		// For all four cases, clear the wordFlag of this word. re-start the process
		this.wordFlags[text_idx][idx] = undefined;
		this._spellcheck();
	}
}

function _spellcheck() {
	var ww = this.wordWin;

	// check if this is the last word in the current text element
	if( this.currentWordIndex == ww.totalWords( this.currentTextIndex) ) {
		this.currentTextIndex++;
		this.currentWordIndex = 0;
		// keep going if we're not yet past the last text element
		if( this.currentTextIndex < this.wordWin.textInputs.length ) {
			this._spellcheck();
			return;
		} else {
			this.terminateSpell();
			return;
		}
	}

	// if this is after the first one make sure the Undo button is enabled
	if( this.currentWordIndex > 0 ) {
		this.controlWin.enableUndo();
	}

	// skip the current word if it has already been worked on
	if( this.wordFlags[this.currentTextIndex][this.currentWordIndex] ) {
		// increment the global current word index and move on.
		this.currentWordIndex++;
		this._spellcheck();
	} else {
		var evalText = ww.getTextVal( this.currentTextIndex, this.currentWordIndex );
		if( evalText ) {
			this.controlWin.evaluatedText.value = evalText;
			ww.setFocus( this.currentTextIndex, this.currentWordIndex );
			this._getSuggestions( this.currentTextIndex, this.currentWordIndex );
		}
	}
}

function _getSuggestions( text_num, word_num ) {
	this.controlWin.clearSuggestions();
	// add suggestion in list for each suggested word.
	// get the array of suggested words out of the
	// three-dimensional array containing all suggestions.
	var a_suggests = this.wordWin.suggestions[text_num][word_num];
	if( a_suggests ) {
		// got an array of suggestions.
		for( var ii = 0; ii < a_suggests.length; ii++ ) {
			this.controlWin.addSuggestion( a_suggests[ii] );
		}
	}
	this.controlWin.selectDefaultSuggestion();
}

function _setAsIgnored( text_num, word_num, flag ) {
	// set the UI
	this.wordWin.removeFocus( text_num, word_num );
	// do the bookkeeping
	this.wordFlags[text_num][word_num] = flag;
	return true;
}

function _getTotalReplaced() {
	var i_replaced = 0;
	for( var i = 0; i < this.wordFlags.length; i++ ) {
		for( var j = 0; j < this.wordFlags[i].length; j++ ) {
			if(( this.wordFlags[i][j] == this.replWordFlag )
			|| ( this.wordFlags[i][j] == this.replAllFlag )
			|| ( this.wordFlags[i][j] == this.fromReplAll )) {
				i_replaced++;
			}
		}
	}
	return i_replaced;
}

function _setWordText( text_num, word_num, newText, flag ) {
	// set the UI and form inputs
	this.wordWin.setText( text_num, word_num, newText );
	// keep track of what happened to this word:
	this.wordFlags[text_num][word_num] = flag;
	return true;
}

function _getFormInputs( inputPattern ) {
	var inputs = new Array();
	for( var i = 0; i < document.forms.length; i++ ) {
		for( var j = 0; j < document.forms[i].elements.length; j++ ) {
			if( document.forms[i].elements[j].type.match( inputPattern )) {
				inputs[inputs.length] = document.forms[i].elements[j];
			}
		}
	}
	return inputs;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成av人片在线观看| 欧洲国产伦久久久久久久| 欧美三电影在线| 亚洲另类春色校园小说| 菠萝蜜视频在线观看一区| 国产精品天美传媒| 丁香婷婷综合激情五月色| 国产色婷婷亚洲99精品小说| 国产精品亚洲综合一区在线观看| 久久久久久免费网| 成人国产精品免费观看| 日韩 欧美一区二区三区| 欧美一卡二卡在线观看| 美女在线一区二区| 久久久久国产精品麻豆| 91精品免费观看| 国产伦理精品不卡| 亚洲三级在线免费| 欧美三级三级三级| av动漫一区二区| 婷婷国产v国产偷v亚洲高清| 精品国产污污免费网站入口 | 亚洲欧洲在线观看av| 日本高清不卡一区| 日韩av电影天堂| 亚洲午夜视频在线观看| 日韩三级.com| 成人激情小说乱人伦| 国产在线看一区| 亚洲激情五月婷婷| 亚洲视频 欧洲视频| 亚洲欧洲日韩一区二区三区| 国产亚洲精久久久久久| 久久久久国产精品麻豆| 国产色产综合产在线视频| 久久综合九色综合欧美亚洲| 色噜噜久久综合| 91色porny在线视频| 美国十次了思思久久精品导航| 午夜婷婷国产麻豆精品| 性欧美疯狂xxxxbbbb| 午夜精品久久久久影视| 日韩中文字幕亚洲一区二区va在线| 久久综合色综合88| 久久免费午夜影院| 国产视频一区二区三区在线观看| 久久久影视传媒| 国产亚洲欧美日韩在线一区| 中文字幕av资源一区| 日韩午夜在线观看| 精品区一区二区| 欧美另类高清zo欧美| 99精品黄色片免费大全| 国产一区二区女| 丁香激情综合国产| 麻豆成人久久精品二区三区小说| 久久99国产精品免费网站| 亚洲一二三四久久| 国产视频视频一区| 亚洲天堂2016| 日日摸夜夜添夜夜添国产精品| 日本 国产 欧美色综合| 亚洲国产aⅴ成人精品无吗| 日韩在线一区二区三区| 国产麻豆视频一区二区| 91尤物视频在线观看| 欧美日韩国产精品自在自线| 91国偷自产一区二区开放时间| 欧美日韩精品福利| 欧美精品一区二区在线播放| 国产精品拍天天在线| 亚洲国产日日夜夜| 久久99蜜桃精品| 久久精品久久久精品美女| 国产一区二区视频在线| 91免费国产在线| 欧美一区二区视频在线观看2020 | 成人免费在线视频观看| 亚洲图片欧美综合| 国产在线不卡一区| 91精品1区2区| 久久久久久久久99精品| 亚洲综合色在线| 韩日av一区二区| 欧美性欧美巨大黑白大战| 色老汉一区二区三区| 日韩亚洲欧美高清| 亚洲欧美日韩国产中文在线| 中文字幕亚洲区| 蜜臀a∨国产成人精品| 成人av网站免费观看| 3d动漫精品啪啪1区2区免费| 国产精品毛片大码女人| 免费观看一级欧美片| 91老司机福利 在线| 欧美精品一区二区久久婷婷| 亚洲综合色噜噜狠狠| 成人一区二区三区在线观看| 欧美精品粉嫩高潮一区二区| 中文字幕一区二区三区四区不卡| 欧美aaa在线| 在线观看日韩av先锋影音电影院| 日本一区二区视频在线| 国产精品久久久久桃色tv| 亚洲精品欧美专区| 国产福利精品一区二区| 91亚洲午夜精品久久久久久| 欧美精品一区二区在线观看| 日韩激情在线观看| 在线视频欧美区| 国产精品久久久久三级| 国产一区不卡在线| 欧美一区二区日韩一区二区| 亚洲丶国产丶欧美一区二区三区| 成人av在线资源网| 久久久久久麻豆| 国内精品在线播放| 91.麻豆视频| 亚洲电影在线播放| 91蝌蚪国产九色| 国产精品嫩草影院av蜜臀| 国产一区二三区| 欧美不卡视频一区| 奇米色一区二区| 91精品国产综合久久久久久久久久 | 国产偷v国产偷v亚洲高清| 久久99国产精品久久99果冻传媒| 91精品国产欧美一区二区18| 亚洲成人一二三| 欧美日韩电影一区| 五月婷婷另类国产| 欧美精品电影在线播放| 香蕉影视欧美成人| 欧美乱妇一区二区三区不卡视频| 午夜精品久久久久久久久久| 欧美日韩在线免费视频| 亚洲午夜久久久久久久久电影网 | 99久久国产综合精品麻豆| 国产精品久久久久久妇女6080| 国产一区二区视频在线播放| 久久综合九色综合欧美98| 国产精品一区二区免费不卡 | 一区二区三区四区高清精品免费观看| 人人超碰91尤物精品国产| 8x福利精品第一导航| 日韩黄色小视频| 日韩欧美在线网站| 久久国产精品区| 国产欧美日韩在线观看| av成人动漫在线观看| 亚洲精品ww久久久久久p站 | 91精品国产综合久久精品app| 视频一区二区三区中文字幕| 欧美一级片免费看| 极品少妇xxxx偷拍精品少妇| 久久久精品日韩欧美| 成人动漫一区二区在线| 一区二区三区鲁丝不卡| 7777女厕盗摄久久久| 美女视频一区在线观看| 国产亚洲欧美激情| 91色在线porny| 日韩精品高清不卡| 国产色综合久久| 欧洲视频一区二区| 麻豆精品在线视频| 国产精品美女久久久久久久久久久| 一本色道久久综合亚洲91| 欧美国产精品劲爆| 欧美亚洲一区二区在线| 九九**精品视频免费播放| 亚洲国产精品国自产拍av| 欧美中文一区二区三区| 久久不见久久见中文字幕免费| 国产精品久久久久久久久免费相片 | 国产精品一卡二| 一区二区三区**美女毛片| 欧美一区二区三区精品| 波多野结衣中文字幕一区二区三区| 亚洲精品久久7777| 久久久噜噜噜久久中文字幕色伊伊| 91亚洲永久精品| 狠狠网亚洲精品| 亚洲观看高清完整版在线观看| 精品国产91久久久久久久妲己| 91丨九色丨尤物| 精品在线播放午夜| 一区二区三区四区乱视频| 久久影院电视剧免费观看| 欧美三级一区二区| av中文字幕亚洲| 精品亚洲aⅴ乱码一区二区三区| 亚洲少妇屁股交4| 久久久亚洲精华液精华液精华液| 欧美在线观看视频在线| 波多野结衣中文字幕一区二区三区| 日产国产欧美视频一区精品| 亚洲欧美日韩国产综合在线| 久久久亚洲精品石原莉奈| 56国语精品自产拍在线观看|