我试图在点击时从会话中删除一些值,但似乎它在没有点击的情况下被触发(在重新加载时)。
这是我的代码(咖啡+ erb):
$(document).on "click", ".top-bar[data-chatbox-id='<%=chat.id%>'] .fa-times", (e) ->
$box_position = $("div.chat_box[data-chatbox-id='<%=chat.id%>']").position().left
$("div.chat_box[data-chatbox-id='<%=chat.id%>']").remove()
## ################### LINE BELOW IS THE ONE CAUSING PROBLEMS #######
<% session[:chatrooms].delete(chat.id) %>
chats = $('.chat_box')
chats.each (index, element) =>
if $(element).position().left < $box_position
$(element).css( 'right', '-=' + 310 + 'px' )
重新加载会话后似乎已被清除 - 不应仅在点击时触发吗?
我唯一想到的是:“如果选择器为null或省略,则事件总是在到达所选元素时触发。”,但我先使用以下方法创建了所选元素:
$(document.body).append("<%= j render '/chatrooms/chatroom' %>")
答案 0 :(得分:1)
那是因为你正在评估运行时的会话删除,而这不是你想要的。您想在点击事件上执行删除。
为此,您可以在单击时执行Ajax请求,该请求在控制器级别中调用会话删除。