Get the test.php page contents, which has been returned in json format (<?php echo json_encode( array( "name"=>"John","time"=>"2pm" ) ); ?>), and add it to the page.
$.get( "test.php", function( data ) {
$( "body" )
.append( "Name: " + data.name ) // John
.append( "Time: " + data.time ); // 2pm
}, "json" );
Можно через https://developer.mozilla.org/en-US/docs/Web/API/F... добавить несколько файлов в форму и отправить на бек, но прийдется на JS немного пописать.