typeobjectadd.js 785 B

12345678910111213141516171819202122232425
  1. $(document).ready(function(){
  2. $("#submit").click(function(){
  3. var namemachine = $("#namemachine").val();
  4. var specification = $("#specification").val();
  5. var company = $("#company").val();
  6. if(namemachine==''||specification=='')
  7. {
  8. alert("Пожалуйста заполните все поля");
  9. }
  10. else
  11. {
  12. // AJAX Code To Submit Form.
  13. $.ajax({
  14. type: "POST",
  15. url: "typeobjectadd.php",
  16. data: {namemachine:namemachine,specification:specification,company:company},
  17. cache: false,
  18. success: function(result){
  19. alert(result);
  20. }
  21. });
  22. }
  23. });
  24. });