If you do not know if you have encountered this problem, I have been plaguing this issue. Please everyone, why is that.
$('.bottom').click(function(){
$('input').click(); // Put on the outside of the ajax can be performed
$.ajax({
type: 'post',
url: url,
data: data,
dataType: 'json',
contentType: 'application/json',
success: function(data){
$('input').click(); // This is invalid
},
error: function(data){
}
});
})