一直搞前端的我,最近在用 Rails3 来重构网站,项目里也有用 chosen 这个 JavaScript select 插件,觉得相当不错,当选项很少时,我不想要那个搜索框,去看 chosen 的源码,在 543 行看到
if (this.form_field.options.length <= this.disable_search_threshold) {
this.container.addClass("chzn-container-single-nosearch");
} else {
this.container.removeClass("chzn-container-single-nosearch");
}
我看到有"<="这个符号,顿时想到 ruby 里面的"=>",呃,我把 JavaScript 里的小于等于给忘记了,汗啦!