我正在为客户构建一个自助式电子邮件活动应用程序。我希望客户下载他们想要的模板,并将数据发送到另一个页面。
我正在使用Jquery.Ajax
发布数据,尽管我需要它来选择客户端选择的 html 模板的内容:
获取模板
function getTemplate(id){
$.ajax({
type: 'get',
url: 'ay/templates/Postcard_Template.html,
data: 'EmailTemplate_id=' + id,
success: function(data) {
$('#shadow').fadeIn('slow');
$('#popupContact').fadeIn('slow');
$('#content').html(data);
}
});
发布到新页面...
$.ajax({
type: 'Post',
url: 'wwww.Test.co.uk/test.html,
data: 'EmailTemplate_id=' + id,
success: function(data) {
$('#shadow').fadeIn('slow');
$('#popupContact').fadeIn('slow');
$('#content').html(data);
});
然后我会将它绑定到一个表单,如果这看起来正确,有什么建议吗?
谢谢,汤姆。