2012年6月14日 星期四

套用TadTools 工具包 for XOOPS

  1. 教學網站:http://www.cnblogs.com/aijun/archive/2011/03/21/1989991.html
                        http://www.cnblogs.com/aijun/archive/2011/03/15/1984477.html
                       http://www.36ria.com/1645
                     *http://code.ciaoca.com/jquery/validation_engine/
                  作者:https://github.com/posabsolute/jQuery-printPage-plugin   
  2. 取得驗證程式碼,已引入jquery
    # ---------------取得驗證程式碼,已引入jquery-------------------
      if(!file_exists(TADTOOLS_PATH."/formValidator.php")){
        redirect_header("index.php",3, _MA_NEED_TADTOOLS);
      }
      include_once TADTOOLS_PATH."/formValidator.php";
      $formValidator= new formValidator("#myForm",true);
      $formValidator_code=$formValidator->render("bottomRight");//選項有:topLeft, topRight, bottomLeft,  centerRight, bottomRight
      # --------------------------------------------------------------

     
  3. 只限數字,不能有正負號及其他文字
    class='validate[custom[onlyNumber]]'
  4. 必填
    class='validate[required]'

  5. 必填且為數字
    class='validate[required,custom[onlyNumber]]'
  6. 只能整數
    class='validate[required,custom[integer]]'


  7. 只能整數且範圍在 1~12

    class='validate[required,custom[integer],min[1],max[12]]'



沒有留言: