我有一个简单的显示/隐藏 div 和 div 上的表单,但是当我提交表单时,div 在重新加载时再次隐藏,我如何停止这种行为?
脚本:
$(function() {
$('.Mbox').hide().click(function(e) {
e.stopPropagation();
});
$("#Mbutton").click(function(e) {
$('.Mbox').animate({ opacity: "toggle" });
e.preventDefault();
});
});
分区:
<li><div class="Mbox"><input type="text" id="conversation_username" class="span5" name="conversation_participant[nome]" placeholder="Para: Nome"/>
<%= text_area :message, :body, :class => "span5", :rows => 5, :placeholder => "Mensagem" %>
<%= f.button "Send", :class => "botao" %></div></li>