周末的东西。我正在使用 ajaxForm 插件,它工作正常。但是使用 after() 创建的表单只能正常提交到 url 并发布 ajax。
$("a.update-time").live("click", function(event) {
event.preventDefault();
var row = $(this).attr("id").split('-');
$("#update-mini-form").remove();
$(this).after(
'<div id="update-mini-form"><form method="post" action="' + 'http://drupal.se/timetracker/timetracker/update_time/' + row[1] + '"> ' +
'<input type="textfield" name="title" value="">' +
'<input type="textfield" name="event_date" value="">' +
'<input type="textfield" name="hours" size="2" value="">' +
'<input type="submit" value="update">' +
'</form></div>'
);
});
$('#update-mini-form').live("submit", function(){
var row = $(this).closest('a').attr("id").split('-');
$(this).ajaxForm({
url: 'http://drupal.se/timetracker/timetracker/update_time/' + row[1],
target:$("div#row-" + row[1]),
type: "POST",
});
});