jquery触摸打孔不工作

时间:2015-09-16 00:44:26

标签: javascript jquery ruby-on-rails jquery-ui-touch-punch

我试图让我的拖放功能在手机上运行。所以我试图使用jquery touch punch,但它似乎没有启用拖放手机。

这是我的代码。我把jquery.ui.touch-punch.min.js放在/ app / assets / javascripts /文件夹中。

=render :layout => 'shared/form_layout' do
  .row-fluid
    .col-xs-12.text-center#new-image
      %h1 Edit Collection
    = form_for @collection, :html => { :method => :put, :multipart => true } do |f|
      .row-fluid
        %label{for: "image"} Drag to Reorder:
        %script{:src => "http://code.jquery.com/jquery-1.7.2.min.js"}
        %script{:src => "http://code.jquery.com/ui/1.8.21/jquery-ui.min.js"}
        %script{:src => "/app/assets/javascripts/jquery.ui.touch-punch.min.js"}
        %ul.list-inline.form-group.edit-grid.clearfix#collectiondrag{"data-update-url" => sort_collections_url}
          - @images.each do |image|
            %li{class: "image", id: "image_#{image.id}"}
                .edit-item{:style => "background-image: url(#{image.photo.url})"}
        %hr.m-y-20
        .text-center
          = f.submit "Save Changes", class: "button btn btn-primary w-100", id: "sort_collection"

1 个答案:

答案 0 :(得分:2)

以下是我使Touch Punch工作的步骤:

  • 首先让您的网站完全按照您的需要在桌面上运行。 Touch Punch本身没有任何作用,它只是扩展了jQuery UI。
  • 下载Touch Punch javascript并将其包含在您的Rails应用中。 /app/assets/javascripts/会这样做,但我更喜欢在/vendor/assets/javascripts/中添加第三方javascripts。
  • 将文件包含在application.js文件中,包含所有jquery和jquery-ui后的文件。

这应该可以让你开始运行!