UPD
This commit is contained in:
parent
21856e85d6
commit
ce66e10115
@ -40,30 +40,30 @@ $(function() {
|
||||
// displayData(cluster);
|
||||
// };
|
||||
|
||||
$('#mountForm').submit(function(event){
|
||||
|
||||
event.preventDefault();
|
||||
$.ajax({
|
||||
url:"mount",
|
||||
data:$(this).serialize(),
|
||||
method:'POST',
|
||||
success:function(data){
|
||||
console.log(data);
|
||||
$('#mount').css('display', 'none');
|
||||
$('input[type = "text"]').val('');
|
||||
var res = JSON.parse(data);
|
||||
message = "<h3>" + res["state"] + "</h3> <p>"+ res["message"] +"</p>";
|
||||
$("#rspContainer").css("display", "block");
|
||||
$("#rsp").html(message)
|
||||
if (res["state"] == 'OK'){
|
||||
$("#rspContainer").css("background-color", "#4CAF50" );
|
||||
}
|
||||
else {
|
||||
$("#rspContainer").css("background-color", "#f44336" )
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
// $('#mountForm').submit(function(event){
|
||||
//
|
||||
// event.preventDefault();
|
||||
// $.ajax({
|
||||
// url:"mount",
|
||||
// data:$(this).serialize(),
|
||||
// method:'POST',
|
||||
// success:function(data){
|
||||
// console.log(data);
|
||||
// $('#mount').css('display', 'none');
|
||||
// $('input[type = "text"]').val('');
|
||||
// var res = JSON.parse(data);
|
||||
// message = "<h3>" + res["state"] + "</h3> <p>"+ res["message"] +"</p>";
|
||||
// $("#rspContainer").css("display", "block");
|
||||
// $("#rsp").html(message)
|
||||
// if (res["state"] == 'OK'){
|
||||
// $("#rspContainer").css("background-color", "#4CAF50" );
|
||||
// }
|
||||
// else {
|
||||
// $("#rspContainer").css("background-color", "#f44336" )
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// })
|
||||
|
||||
});
|
||||
|
||||
|
@ -95,27 +95,27 @@
|
||||
// };
|
||||
// $('.tablink').css('display', 'block');
|
||||
//
|
||||
// $('#mountForm').submit(function(event){
|
||||
// event.preventDefault();
|
||||
// $.ajax({
|
||||
// url:"mount",
|
||||
// data:$(this).serialize(),
|
||||
// method:'POST',
|
||||
// success:function(data){
|
||||
// $('#mount').css('display', 'none');
|
||||
// $('input[type = "text"]').val('');
|
||||
// var res = JSON.parse(data);
|
||||
// message = "<h3>" + res["state"] + "</h3> <p>"+ res["message"] +"</p>";
|
||||
// $("#rspContainer").css("display", "block");
|
||||
// $("#rsp").html(message)
|
||||
// if (res["state"] == 'OK'){
|
||||
// $("#rspContainer").css("background-color", "#4CAF50" );
|
||||
// }
|
||||
// else {
|
||||
// $("#rspContainer").css("background-color", "#f44336" )
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// })
|
||||
$('#mountForm').submit(function(event){
|
||||
event.preventDefault();
|
||||
$.ajax({
|
||||
url:"mount",
|
||||
data:$(this).serialize(),
|
||||
method:'POST',
|
||||
success:function(data){
|
||||
$('#mount').css('display', 'none');
|
||||
$('input[type = "text"]').val('');
|
||||
var res = JSON.parse(data);
|
||||
message = "<h3>" + res["state"] + "</h3> <p>"+ res["message"] +"</p>";
|
||||
$("#rspContainer").css("display", "block");
|
||||
$("#rsp").html(message)
|
||||
if (res["state"] == 'OK'){
|
||||
$("#rspContainer").css("background-color", "#4CAF50" );
|
||||
}
|
||||
else {
|
||||
$("#rspContainer").css("background-color", "#f44336" )
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
</script>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user