1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. JAVA基礎知識:簡單介紹form的提交方式

        時間:2023-03-08 08:18:30 JAVA認證 我要投稿
        • 相關推薦

        JAVA基礎知識:簡單介紹form的提交方式

          一:form簡介

        JAVA基礎知識:簡單介紹form的提交方式

          Easyui中的form有兩種提交方式、結合自己新添加的一種ajax提交方式、本文簡單說明form的三種提交方式、和結合validatebox使用來校驗基本信息。

          二:form提交

          以登錄為例:下面是登錄頁面、注意要導入easyui所需要的css和js。

          要引入的css+js:

          登錄的div和表單:

          username: password:

          簡單說明:

          1、登錄是使用dialog來作為界面的、初始化dialog有幾種方式——(1)使用class="easyui-dialog"定義、使用 data-options="xxx"來定義dialog屬性、這種適合只具有基本樣式、不具有與后臺交互功能的時候的頁面使用。(2)使用js初始化、適合與后臺交互的界面使用、(3)可以混合使用。

          1、通過ajax提交:

          loginAndregist = $('#loginAndregist').dialog({

          closable:false,

          modal:true,

          draggable:false,

          buttons:[{

          text:'注冊',

          handler:function(){

          $('#regist').dialog('open');

          }

          },{

          text:'登錄',

          handler:function(){

          if( $('#loginInputForm').form('validate')){

          $.ajax({

          url:'login_login.action',

          data:$('#loginInputForm').serialize(),

          cache:false,

          dataType:'text',

          success:function(r){

          console.info(r);

          if(r == "success"){

          $('#loginAndregist').dialog('close');

          $.messager.show({

          title : '提示',

          msg : '登錄成功'

          });

          }else{

          $.messager.alert('標題','用戶名密碼錯誤');

          }

          }

          });

          }

          }

          }],

          });

          簡單說明:if( $('#loginInputForm').form('validate')){...}是將form與其內部的validatebox綁定、可以使用 validatebox提供的校驗規則來校驗輸入。若不使用這個而直接使用ajax提交、則不會使用validatebox提供的校驗規則、當然也可以自己加校驗方式、onSubmit()。

          2、通過先初始化form、再在點擊登錄觸發函數中提交

          初始化form表單:

          //初始化登錄表單

          loginInputForm = $('#loginInputForm').form({

          url:'login_login.action',

          success:function(r){

          console.info(r);

          if(r == "success"){

          $('#loginAndregist').dialog('close');

          $.messager.show({

          title : '提示',

          msg : '登錄成功'

          });

          }else{

          $.messager.alert('標題','用戶名密碼錯誤');

          }

          }

          });

          點擊登錄時提交表單:

          loginAndregist = $('#loginAndregist').dialog({

          closable:false,

          modal:true,

          draggable:false,

          buttons:[{

          text:'注冊',

          handler:function(){

          $('#regist').dialog('open');

          }

          },{

          text:'登錄',

          handler:function(){

          loginInputForm.submit();

          }

          }],

          });

          簡單說明:這里不再需要像ajax一樣添加一個校驗的if、因為這種方式的form是與validatebox綁定的、會自動校驗。

          3、直接在點擊登錄觸發函數中提交

          loginAndregist = $('#loginAndregist').dialog({

          closable:false,

          modal:true,

          draggable:false,

          buttons:[{

          text:'注冊',

          handler:function(){

          $('#regist').dialog('open');

          }

          },{

          text:'登錄',

          handler:function(){

          if( $('#loginInputForm').form('validate')){

          $('#loginInputForm').form('submit',{

          url:'login_login.action',

          onSubmit: function(){

          console.info('do some check !');

          },

          success : function(r){

          console.info(r);

          console.info(r);

          if(r == "success"){

          $('#loginAndregist').dialog('close');

          $.messager.show({

          title : '提示',

          msg : '登錄成功'

          });

          }else{

          $.messager.alert('標題','用戶名密碼錯誤');

          }

          }

          });

          }

          }

          }],

          });

          $('#loginInputForm').form('submit',{...})、當點擊登錄按鈕時會直接提交表單、紅色部分可以對表單提交之前做一些操作、比如校驗。

        【JAVA基礎知識:簡單介紹form的提交方式】相關文章:

        Java的基礎知識07-27

        Java基礎知識詳解12-07

        JAVA認證基礎知識:JavaNativeInterface學習小結06-02

        JAVA認證基礎知識:基于反射機制的服務代理調用08-26

        古箏基礎知識介紹03-26

        影視表演基礎知識介紹01-03

        印度舞基礎知識介紹11-30

        素描工具基礎知識介紹06-20

        美國留學省錢方式介紹06-08

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>