クライアント向けのセルフサービスのメールキャンペーンアプリを作成しています。クライアントに希望のテンプレートをダウンロードしてもらいたいのですが、データは別のページに送信されます。
を使用し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);
});
次に、これをフォームにバインドします。これが正しいと思われる場合は、何か提案はありますか?
ありがとう、トム。