0
如何使用jQuery隱藏#changes-saved
代碼?jQuery顯示問題?
例如,假設用戶點擊提交按鈕,然後離開當前網頁,然後返回到網頁,並且#changes-saved
不再顯示,直到再次單擊提交按鈕時顯示代碼。
這裏是jQuery代碼。
$(function() {
$('#changes-saved').hide();
$(".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>').show().pause(1000).hide();
});
return false; // Prevent normal submit.
});
});