LoginSignup
0
0

More than 3 years have passed since last update.

返信一覧開閉

Posted at

スクリーンショット 2019-08-11 21.37.00.png


<div class = "user_icon" id = "comment_user_<%= i %>"><%= fa_icon("user") %></div>


    <script>
      $(function () {

    // <!-- リプ一覧欄開閉 -->
      $('#reply_lists_id_<%= i %>').hide();
      <% if comment.replies.present? %>
        $('#comment_user_<%= i %>').click(function () {
          $('#reply_lists_id_<%= i %>').toggle();
    // <!-- リプフォーム閉 -->
          $('#reply_form_id_<%= i %>').hide();

      <% else %>
        $('#comment_user_<%= i %>').click(function () {
          window.alert('リプライがありません。');
      <% end %>
      });
     });
   </script>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0