使用jquery进行拼写检查时出错了

时间:2010-10-19 21:56:39

标签: javascript asp.net jquery spell-checking

<script type="text/javascript">
        // check the spelling on a textarea
        $("#check-textarea").click(function (e) {
            e.preventDefault();
            $(".loading").show();
            $("#text-content")
            .spellChecker({
                lang: "en",
                engine: "google",
                suggestBoxPosition: "above"
            })
            .spellChecker('check', function (result) {

                // spell checker has finished checking words
                $(".loading").hide();

                // if result is true then there are no badly spelt words
                if (result) {
                    alert('There are no incorrectly spelt words.');
                }
            });
        });
    </script> 

我收到错误消息对象不支持此属性或方法..

我用过这个链接..

http://code.google.com/p/jquery-spellchecker/source/browse/#svn/trunk/css

1 个答案:

答案 0 :(得分:2)

看起来您使用的是错误的来源。

你应该试试==&gt; http://jquery-spellchecker.googlecode.com/svn/trunk/js/jquery.spellchecker.min.js

不是您列出的CSS(http://code.google.com/p/jquery-spellchecker/source/browse/#svn/trunk/css

此外,正如Jakub所指出的那样,它是spellchecker中的小写c

查看 example page.