不要使用 coffeescript 方法更改文本字段

Dont work coffeescript method change text field

Rails 5 beta3

我安装了 gems

gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'

创建的脚本:javascripts/freelancers.coffee

jQuery ->
  $('.birthday1').change ->
    alert( "Alert!!!!!!!!" )
    $('.birthday1').datepicker()    

edit.html.erb

<li>
        <label for="freelancer_birth_date">Birthday</label>
        <div>          
          <%= f.text_field :birthday, class: 'birthday1' %>
        </div>
      </li>

我在文本字段中输入了新值,但没有任何反应。我的脚本有什么不正确的地方?

问题是与另一个 jquery 脚本发生冲突。我删除了这些脚本,现在一切正常。