将字典合并到HTML系统中以确保单词存在

时间:2012-03-04 17:00:42

标签: javascript html dictionary

我对此非常敏感,我目前正在尝试将字典合并到我的HTML系统中,以检查单词是否真实。我目前有一个“words.txt”文档,我正在使用它作为字典。我记得学过一种方法,它允许你在一个文档中搜索一个单词但却找不到任何关于它的信息,并且会用它来检查一个单词是否存在。目前我对于找到这个词需要多长时间没有任何疑虑,只是它是否可以找到它。

所以目前我打算这样做,以便用户使用文本框,输入一个单词,这个单词将与字典交叉引用,如果找到该单词,它会提醒用户该单词存在。我只是不确定如何做到这一点。

但是,如果有更好或更简单的方法,那么我会非常感谢您的意见。

提前致谢。我很乐意指定其他任何内容。

2 个答案:

答案 0 :(得分:2)

trie数据结构适用于字典。特里是每个字母排序的单词树。这是一个很好的解释,但对于PHP:http://phpir.com/tries-and-wildcards

答案 1 :(得分:0)

您可以使用xmlhttprequest加载字典文件,加载后将其转储到数组中。然后,每次解除一个键(或者你想要检查一个单词的拼写)时,可以调用一个函数来将该单词与字典中的单词进行比较。

这是一种方法:

HTML:

<textarea onkeyup="check(this)"></textarea>

使用Javascript:

//A large array of dictionary words
var dictionary = new Array();




//First, let's load up the dictionary
address = "words.txt";


//Create an XMLHTTPRequest object
var req = (window.XMLHttpRequest)?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP");
if(req == null) {
    console.log("Error: XMLHttpRequest failed to initiate.");
}

//When it loads, add all the elements to the dictionary array
req.onload = function() {

    dictionary = req.responseText.split("\n");


    //Convert all the characters to lowercase. That way, multi-case strings are allowed.
    for(var i = 0; i < dictionary.length; i++)
        dictionary[i] = dictionary[i].toLowerCase();



}
try {

    req.open("GET", address, true);
    req.send(null);

} catch(e) {
    console.log("Oh snap");
}









//This function is called every time a key is released
function check(element) {

    var allWords = element.value.split(" ");


    for(var i = 0; i < allWords.length; i++) {


        if(dictionary.indexOf(allWords[i].toLowerCase()) == -1) {
            element.style.backgroundColor = "#FFF";
            return;
        }

    }

    element.style.backgroundColor = "#0F0";

}

编辑:修改为代码以适用于textareas