Мне нужна помощь, чтобы отобразить следующее добавление после того, как пользователь щелкнул fab_send
, а затем снова отобразить следующее добавление?
Как это исправить?
В настоящее время отображаются все добавления.
Спасибо.
if($(this).attr('id') == 'newCustType'){
$('#chatSend').attr('disabled', false);
$('.chat_converse').append(custName);
$('#fab_send').click(function(event){
var thought = $('#chatSend').val();
sendMessage();
$('.chat_converse').append(custEmail);
$('#chatSend').val('');
return false;
});
} else if($(this).attr('id') == 'existingCustType'){
$('#chatSend').attr('disabled', false);
$('.chat_converse').append(custAcctNum);
$('#fab_send').click(function(event){
var thought = $('#chatSend').val();
sendMessage();
$('.chat_converse').append(custName);
$('#chatSend').val('');
return false;
});
$('#fab_send').click(function(event){
var thought = $('#chatSend').val();
sendMessage();
$('.chat_converse').append(custLoc);
$('#chatSend').val('');
return false;
});
$('#fab_send').click(function(event){
var thought = $('#chatSend').val();
sendMessage();
$('.chat_converse').append(custDateofBirth);
$('#chatSend').val('');
return false;
});
}
});