Код: Выделить всё
Код: Выделить всё
$('#adimage').change(function(){
uploadimage();
});
function uploadimage()
{
const adimgform = new FormData($('#adimgform')[0]);
$.ajax({
url: '/controller/upload-ad-image.php',
type : 'POST',
async: true,
cache: false,
contentType: false,
processData: false,
data: adimgform,
enctype: 'multipart/form-data',
success: function (returndata) {
$('#adform1result').html(returndata);
}
});
}
Код: Выделить всё
Uncaught SyntaxError: Failed to execute 'appendChild' on 'Node': missing ) after argument list
at m (jquery-3.7.1.min.js:2:880)
at $e (jquery-3.7.1.min.js:2:46274)
at ce.append (jquery-3.7.1.min.js:2:47633)
at ce. (jquery-3.7.1.min.js:2:48729)
at M (jquery-3.7.1.min.js:2:29497)
at ce.html (jquery-3.7.1.min.js:2:48405)
at Object.success (post-now.php?category=1&name=Automobiles:220:41)
at c (jquery-3.7.1.min.js:2:25304)
at Object.fireWith [as resolveWith] (jquery-3.7.1.min.js:2:26053)
at l (jquery-3.7.1.min.js:2:77782)
Подробнее здесь: https://stackoverflow.com/questions/793 ... ode-missin