为什么javascript会在我的索尼爱立信C510浏览器上运行,而不是javascript + jquery?

我能够将以下.htm文件复制到我的索尼爱立信C510并且鼠标hover工作:

    

但我无法使任何jquery工作,例如,当我点击链接时,以下示例没有响应。 我知道jquery-1.4.2.min.js文件存在于正确的位置,因为我复制了目录中的所有文件:

      $(document).ready(function() { $("div > div.question").click(function() { if($(this).next().is(':hidden')) { $(this).next().show(); } else { $(this).next().hide(); } }); });   div.flashcard { margin: 0 10px 10px 0; } div.flashcard div.question { background-color:#ddd; width: 400px; padding: 5px; cursor: hand; cursor: pointer; } div.flashcard div.answer { background-color:#eee; width: 400px; padding: 5px; display: none; }    
Who was Wagner?
German composer, conductor, theatre director and essayist, primarily known for his operas (or "music dramas", as they were later called). Unlike most other opera composers, Wagner wrote both the music and libretto for every one of his works.
Who was Thalberg?
a composer and one of the most distinguished virtuoso pianists of the 19th century.

我怎样才能让jquery在我的索尼爱立信C510浏览器中工作,就像普通的javascript一样?

添加:

根据rchern的建议,我尝试了这个:

      $(document).ready(function() { $('#test').css("background-color","lightgreen"); alert("hi from jQuery"); });    

test from html

jquery should turn this green

在桌面上的firefox中它显示弹出窗口并将线条变为绿色,但在手机上jquery似乎没有效果,只显示文本。

C510浏览器是NetFront 3.4。

这肯定来自旧的浏览器,在供应商认为提供有关支持的内容或调试工具的文档之前是有用的。 使用NetFront,就像其他较旧的移动浏览器一样,你真的必须逐步增加测试function,因为我们今天认为的一些基本的JavaScript(从不介意DOM)会被打破,当出现问题时,你几乎没有能力弄清楚它是什么。

jQuery是一个复杂的野兽,它对JS和DOM允许的内容有一些自由。 在目前的智能手机(WinMo 6.1.4 +,iPhone,Android等)之前,我不希望它能在移动浏览器上运行。 抱歉。

并非所有移动设备都支持jQuery。 我已经能够在iPhone,iPod Touch,大多数Android手机,Palm Pre和-i think-Blackberry上使用它。

John Resig正在开发移动版,请查看http://groups.google.com/group/jquery-dev/browse_thread/thread/6d0f9da66581d9ca/819ff599f546ec65?lnk=raot&pli=1