0

首先,我的 Jquery 知识非常有限,但我正在阅读和练习以解决这个问题,所以如果这是一个非常基本的问题,请多多包涵。正如标题所述,我在我的 Rails 应用程序中收到一条错误消息

  $(".share a").button is not a function

我的 application.js 文件包含这个

  $(function() {

  $(".share a")
  .button()
  .click(function() {

    var a = this;

    // first set the title of the dialog box to display the folder name
    $("#invitation_form").attr("title", "Share '" + $(a).attr("folder_name") + "' with others");

    // a hack to display the different folder names correctly
    $("#ui-dialog-title-invitation_form").text("Share '" + $(a).attr("folder_name") + "' with others");

    // then put the folder_id of the share link into the hidden field "folder_id" of the invite form
    $("#folder_id").val($(a).attr("folder_id"));

    // the dialog box customization
    $("#invitation_form").dialog({
      height: 300,
      width: 600,
      modal: true,
      buttons: {
        // first button
        "Share": function() {
          // get the url to post the data to
          var post_url = $("#invitation_form form").attr("action");

          // serialize the form data and post it the url with ajax
          $.post(post_url, $("#invitation_form form").serialize(), null, "script");

          return false;
        },
        // second button
        Cancel: function() {
          $( this ).dialog( "close" );
        }
      },
      close: function() {
      }
    });

    return false;
  });

});

我的视图页面包含这个来调用jquery(我认为)

  <div class="share">
        <%= link_to "Share", "#", :folder_id => folder.id, :folder_name =>       folder.nameunless @is_this_folder_being_shared %>
      </div>

谁能告诉我为什么我会收到这个错误,因为我可以看到它应该工作,当我点击一个标记为共享的按钮时,我应该会在我的邀请表单中出现一个弹出窗口。

任何帮助表示赞赏,因为我现在被困在这一点上

4

1 回答 1

1

您很可能忘记包含 jQuery UI。

除此之外,HTML 没有称为folder_name(或folder_id)的属性。请不要发明自定义属性 - 如果您想存储自定义数据,请使用数据属性:data-folder-name="whatever"然后使用.data('folderName')通过 jQuery 访问它。

于 2012-04-23T08:05:49.997 回答