zoukankan      html  css  js  c++  java
  • jQuery plugin : jqTransform

     

    Usage

    1- Add javascript inclusion in the header section of your web page

    //required
    <script type="text/javascript" src="js/jquery.js"></script>
    <script type="text/javascript" src="js/jquery.jqtransform.min.js"></script>
    
    

    2- Write your form

    <form class="jqtransform">
    <div class="rowElem">
    <label for="name">Name: </label>
    <input type="text" name="name"              />
    </div>
    <div class="rowElem"><input type="submit" value="send"              /><div>
    </form>
    

    3- Finally use the plugin

    After it, select the forms and call the jqTransform plugin. See some examples:

    <script type="text/javascript">
    $(function() {
        //find all form with class jqtransform and apply the plugin
        $("form.jqtransform").jqTransform();
    });
    </script>
    
    

    Additional information

    Options available

    Just edit the css file to customize your form, that's it.

    Compatibility

    We did our best to make it work on ie 6+, safari 2+, firefox 2+

  • 相关阅读:
    IDEA快捷的添加包名
    Spring源码(一)
    Java的理解
    剪绳子
    机器人的运动范围
    矩阵中的路径
    N皇后问题
    回溯法
    全排列
    反转链表
  • 原文地址:https://www.cnblogs.com/luoxiaolei/p/5173309.html
Copyright © 2011-2022 走看看