nouveau fichier : SRC/public/js/setListeOeuvre.js
This commit is contained in:
parent
2a18c47789
commit
5146b2f6af
20
SRC/public/js/setListeOeuvre.js
Normal file
20
SRC/public/js/setListeOeuvre.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
$(document).ready( function() {
|
||||||
|
$('#enregistrer').click(function() {
|
||||||
|
event.preventDefault();
|
||||||
|
send = {idListeOeuvre : " " ,
|
||||||
|
idOeuvres : [1,2,3,4,4] }
|
||||||
|
url = "/setListOeuvres";
|
||||||
|
$.post(url,
|
||||||
|
send,
|
||||||
|
function( data ) {
|
||||||
|
})
|
||||||
|
.done(function() {
|
||||||
|
console.log( "success" );
|
||||||
|
})
|
||||||
|
.fail(function() {
|
||||||
|
console.log( "error" );
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
Reference in New Issue
Block a user