Object不支持此属性或方法错误

时间:2011-09-13 05:49:51

标签: jquery ruby-on-rails

在我的Ruby on rails应用程序中,我安装了jquery。 从那时起我就收到了这个错误

Message: Object doesn't support this property or method
Line: 51
Char: 3
Code: 0
URI: http://172.30.11.167:3000/javascripts/application.js?1315836568

application.js中的第51行对应

$('textarea.autoresize').autoResize({
      onResize : function() {$(this).css({opacity:0.8});},
      animateCallback : function() {$(this).css({opacity:1});},
      limit: 300
  }).change();

之前代码工作正常。我不确定我的jquery安装是否导致错误。

1 个答案:

答案 0 :(得分:0)

也许您遇到了Prototype vs jQuery选择器冲突。考虑到你在标题中包含了jquery,试试这个

jQuery('textarea.autoresize')