0
在我的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
51行中的application.js對應
$('textarea.autoresize').autoResize({
onResize : function() {$(this).css({opacity:0.8});},
animateCallback : function() {$(this).css({opacity:1});},
limit: 300
}).change();
代碼是以前做工精細。我不知道我的安裝jquery是否導致了錯誤。
juery.aotoresize.js存在於公共/ javascripts.I沒有包括任何地方的jquery.js添加 – ramya
<%= javascript_include_tag 'jquery.min' %>並再次檢查 – Salil
您好,它已經包含在我的默認值。 – ramya