嗨,我正在使用此代码表单 Jquery Form 插件
// prepare the form when the DOM is ready
$(document).ready(function() {
// bind form using ajaxForm
$('#htmlForm').ajaxForm({
// target identifies the element(s) to update with the server response
target: '#htmlExampleTarget',
// success identifies the function to invoke when the server response
// has been received; here we apply a fade-in effect to the new content
success: function() {
$('#htmlExampleTarget').fadeIn('slow');
}
});
});
这是页面的链接http://jquery.malsup.com/form/#html 此代码用新代码覆盖以前的代码,但我需要的只是将新代码附加到以前的 html 中。我尝试过简单的 jquery .append(),但这也覆盖了代码。