在AJAX成功调用中附加变量

时间:2013-06-26 15:00:25

标签: javascript jquery ajax

如何在AJAX成功通话的附加消息中成功使用此变量?

http://codepen.io/anon/pen/fdBvn

data['name'] = $('#goofy').val();

$.ajax({
 url: '/api/1/email/test/',
 data: data,
 type: 'POST',
 error: function(){
 alert("Sorry, error with our server, we're working on it now");
},
success: function(){
$('#success').append('<h2>Thanks "+data['name']+"!</h2><p>We will be in touch shortly</p>');
}
});

1 个答案:

答案 0 :(得分:1)

你必须使用正确的引用。

$('#success')
  .append('<h2>Thanks '+data['name']+'!</h2><p>We will be in touch shortly</p>');

请注意,在您的代码中,您使用'打开字符串,但使用"

关闭字符串