我正在使用带有 jquery gem 的 rails。
我的 application.js 中有以下内容
//= require jquery
//= require jquery_ujs
//= require_tree .
这些声明是否按顺序包含文件?
我正在使用 jquery 插件 textareaexpander (http://www.sitepoint.com/blogs/2009/07/29/build-auto-expanding-textarea-1/)
我收到一个 js 错误
jQuery("textarea[class*=expand]").TextAreaExpander();
在插件的几乎最后一行,如下所示
// initialize all expanding textareas
jQuery(document).ready(function() {
jQuery("textarea[class*=expand]").TextAreaExpander();
})
我不明白?是不是因为 jQuery 尚未加载。为什么 TextAreaExpander 仍未定义?
下面是插件文件中的其余代码供参考。
(function($) {
// jQuery plugin definition
$.fn.TextAreaExpander = function(minHeight, maxHeight) {
var hCheck = !($.browser.msie || $.browser.opera);
// resize a textarea
function ResizeTextarea(e) {
// event or initialize element?
e = e.target || e;
// find content length and box width
var vlen = e.value.length, ewidth = e.offsetWidth;
if (vlen != e.valLength || ewidth != e.boxWidth) {
if (hCheck && (vlen < e.valLength || ewidth != e.boxWidth)) e.style.height = "0px";
var h = Math.max(e.expandMin, Math.min(e.scrollHeight, e.expandMax));
e.style.overflow = (e.scrollHeight > h ? "auto" : "hidden");
e.style.height = h + "px";
e.valLength = vlen;
e.boxWidth = ewidth;
}
return true;
};
// initialize
this.each(function() {
// is a textarea?
if (this.nodeName.toLowerCase() != "textarea") return;
// set height restrictions
var p = this.className.match(/expand(\d+)\-*(\d+)*/i);
this.expandMin = minHeight || (p ? parseInt('0'+p[1], 10) : 0);
this.expandMax = maxHeight || (p ? parseInt('0'+p[2], 10) : 99999);
// initial resize
ResizeTextarea(this);
// zero vertical padding and add events
if (!this.Initialized) {
this.Initialized = true;
$(this).css("padding-top", 0).css("padding-bottom", 0);
$(this).bind("keyup", ResizeTextarea).bind("focus", ResizeTextarea);
}
});
return this;
};
})(jQuery);
// initialize all expanding textareas
jQuery(document).ready(function() {
jQuery("textarea[class*=expand]").TextAreaExpander();
});
如您所见,函数 TextAreaExpander 首先是通过扩展 jQuery 定义的,然后在文档就绪时调用,但仍然无法正常工作。我对他们的其他插件有类似的问题是 selected.js。
如果有人能指出问题并详细说明造成这种情况的原因,因为对我来说这没有任何意义(但显然我在这里遗漏了一点)。
相关代码
development.rb
config.assets.compress = false
config.assets.debug = true
application.rb
config.assets.enabled = true
config.assets.version = '1.0
好的,所以我做了建议检查它是否是语法问题的实验,结果不是。
我做了另一个实验,如果我删除线
//= require_tree .
来自 application.js ,而是将其替换为
//= require_self
在我的视图文件(正在呈现的视图)中,我在最后添加以下内容
= javascript_include_tag 'libs/jquery.textarea-exapander'
一切似乎都很完美。现在有什么想法吗?
更多信息
app/assets/javascript
|- application.js
|- chosen.jquery.js
|- admin/
|- categories.js.coffee
|- libs/
|- jquery.textarea-exapander.js
|- modernizr.js
|- platformselector.js
|- waypoints.js
|- gmaps4ails/
|- gmaps4rails.base.js
|- gmaps4rails.bing.js
|- gmaps4rails.googlemaps.js
我的 application.js
//= require jquery
//= require jquery_ujs
//= require_tree .
我的布局中的代码
%html
%head
%title Whatever
%link{type:"text/css",rel:"stylesheet", href:"http://fonts.googleapis.com/css?family=Abel"}
= stylesheet_link_tag "application", :media => "all"
= stylesheet_link_tag 'gmaps4rails'
= javascript_include_tag "application"
= csrf_meta_tags
%body
= render 'shared/header'
%div#main.inside.topadd
= yield
%div.wrapper
=render 'shared/footer'
= yield :scripts
上面的设置不起作用
以下设置有效
我的 application.js
//= require jquery
//= require jquery_ujs
在我的registrations/new.html.haml里面
some bla bla bla bla haml code
= javascript_include_tag 'libs/jquery.textarea-exapander'
这可行,如果我在视图之后包含它,则对于其他插件 selected.js 也是如此,否则它会给出与 .chosen 不是函数相同的错误。
因此,从评论看来,我的本地设置有问题
我在 heroku 和 local 的 html 中注意到另一个奇怪的东西
这是heroku上的body类
linux js gecko gecko_20100101 firefox firefox_12_0 firefox_12 gecko_12_0
但在我当地,身体课是
js no-flexbox canvas canvastext webgl no-touch geolocation postmessage no-websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients no-cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths linux gecko gecko_20100101 firefox firefox_12_0 firefox_12 gecko_12_0 js flexbox canvas canvastext webgl no-touch geolocation postmessage no-websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients no-cssreflections csstransforms csstransforms3d csstransitions fontface video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths
我也在本地看到这个我的每个 Rails 应用程序
<div id="cboxOverlay" style="display: none;"></div>
<div id="colorbox" class="" style="padding-bottom: 0px; padding-right: 0px; display: none;"></div>
身体开始后
<div id="supersized-loader"></div>
<div id="supersized"></div>
在正文结束之前,我到目前为止都没有使用包括彩盒在内的任何内容......
到底是怎么回事 ??
谢谢