我是JQuery的新手我真的不知道如何在.hide()
中编码,以便隐藏以下代码从显示开始直到点击<li>Changes saved!</li>
然后让它淡入使用.fadeIn
。有人可以告诉我如何在.hide()
和.fadeIn
中正确编码到我的JQuery代码中吗?
这是JQuery代码。
$(function() {
$(".save-button").click(function() {
$.post($("#contact-form").attr("action"), $("#contact-form").serialize(), function(html) {
$("div.contact-info-form").html(html);
$('#changes-saved').append('<li>Changes saved!</li>');
});
return false; // prevent normal submit
});
});
答案 0 :(得分:1)
$('#changes-saved').append('<li>Changes saved!</li>').show().pause(1000).hide();
这就是你需要的吗?
答案 1 :(得分:0)
您确定您的提交按钮具有“保存按钮”类。如果这是您的按钮名称,您可能想要执行类似
的操作$("save-button").click(function(){