0

これらの JQuery 関数のどれが他の上にあるかに応じて、一番下の関数が壊れます。誰かが理由を知っているかどうか疑問に思っていましたか?複数回呼び出すことができないものはありますか?私は強力なコーダーではありません。助けていただければ幸いです。

$( "#dialog-new" ).dialog({
  resizable: false,
  width: 'auto',
  modal: true,
  fluid: true,
  autoOpen: false,
  buttons: {
    "Clear Form": function() {
      clearForm($("#newapsform"));

    },
    "Create Request": function() {

      if(formIsOkay($("#newapsform")))
      {
        $.ajax
        ({  
          type: "POST",  
          url: "system/aps2.newrequest.php",  
          data: $("#newapsform").serialize(),  
          success: function() 
          {  
            $( "#dialog-new" ).dialog( "close" );
            $("#goodmsg").html("Created photo request successfully!");
            $('#goodmsgdiv').fadeIn(1500).delay(3000).fadeOut(1500);

            datatables.fnDraw();
            searchtables.fnDraw();
            phototables.fnDraw();
            clearForm($("#newapsform"));
          },
          error: function() 
          {  
            $( "#dialog-new" ).dialog( "close" );
            $("#badmsg").html("Could not create request: Use the force next time.");
            $('#badmsgdiv').fadeIn(1500).delay(3000).fadeOut(1500);
          }

        });
      }
    }
  }
}); 



$( "#dialog-stat" ).dialog({
  resizable: false,
  width: 'auto',
  modal: true,
  fluid: true,
  autoOpen: false,
  buttons: {
    "Clear Static Form": function() {
      clearForm($(".statform"));

    },
    "Create Static Request": function() {

      if(formIsOkay($(".statform")))
      {
        $.ajax
        ({  
          type: "POST",  
          url: "system/aps2.newrequeststatic.php",  
          data: $(".statform").serialize(),  
          success: function() 
          {  
            $( "#dialog-stat" ).dialog( "close" );
            $("#goodmsg").html("Created photo request successfully!");
            $('#goodmsgdiv').fadeIn(1500).delay(3000).fadeOut(1500);

            datatables.fnDraw();
            searchtables.fnDraw();
            phototables.fnDraw();
            clearForm($(".statform"));
          },
          error: function() 
          {  
            $( "#dialog-stat" ).dialog( "close" );
            $("#badmsg").html("Could not create request: Use the force next time.");
            $('#badmsgdiv').fadeIn(1500).delay(3000).fadeOut(1500);
          }

        });
      }
    }
  }
}); 
4

0 に答える 0