data: `getarrDate=${arrDate}`,
jQuery( function( $ ){
// jQuery( 'button-range-submit' ).click(function(){
console.log('Нажал в файле calculate');
jQuery.ajax({
url: 'https://maxcredit.proiectmd.com/dae/',
type: 'POST',
data: `getoutSUM=${outSUM}&getoutVal=${outVal}&getarrDate=${arrDate}`,
success: function( data ) {
console.log( data );
}
});
// если элемент – ссылка, то не забываем:
// return false;
// });
});
const arr = ['d', 't', 'i'];
console.log(JSON.stringify(arr)) // "['d','t','i']"
jQuery( function( $ ){
// jQuery( 'button-range-submit' ).click(function(){
console.log('Нажал в файле calculate');
jQuery.ajax({
url: 'https://maxcredit.proiectmd.com/dae/',
type: 'POST',
// data: `getoutSUM=${outSUM}&getoutVal=${outVal}&getarrDate=${arrDate}`,
data:{
getoutSUM: `${outSUM}`,
getoutVal: `${outVal}`,
getarrDate: `${arrDate}`,
},
success: function( data ) {
console.log( data );
}
});
// если элемент – ссылка, то не забываем:
// return false;
// });
});
jjQuery( function( $ ){
// jQuery( 'button-range-submit' ).click(function(){
console.log('Нажал в файле calculate');
jQuery.ajax({
url: 'https://maxcredit.proiectmd.com/dae/',
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({getoutSUM: outSUM, getoutVal: outVal, getarrDate: arrDate}),
success: function( data ) {
console.log( data );
}
});
// если элемент – ссылка, то не забываем:
// return false;
// });
});