如何在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>');
}
});
答案 0 :(得分:1)
你必须使用正确的引用。
$('#success')
.append('<h2>Thanks '+data['name']+'!</h2><p>We will be in touch shortly</p>');
请注意,在您的代码中,您使用'
打开字符串,但使用"