亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? jquery-plugins.js

?? 一個自娛自樂的demo 開發(fā)環(huán)境 apache-tomcat-6.0.16 Mysql 5.1.11 Jdk 1.6 文件結(jié)構(gòu)如下 --MyGame -----MyGam
?? JS
?? 第 1 頁 / 共 3 頁
字號:
 * jQuery form plugin * @requires jQuery v1.0.3 * * Dual licensed under the MIT and GPL licenses: *   http://www.opensource.org/licenses/mit-license.php *   http://www.gnu.org/licenses/gpl.html * * Revision: $Id$ * Version: 0.9 *//** * ajaxSubmit() provides a mechanism for submitting an HTML form using AJAX. * * ajaxSubmit accepts a single argument which can be either a success callback function * or an options Object.  If a function is provided it will be invoked upon successful * completion of the submit and will be passed the response from the server. * If an options Object is provided, the following attributes are supported: * *  target:   Identifies the element(s) in the page to be updated with the server response. *            This value may be specified as a jQuery selection string, a jQuery object, *            or a DOM element. *            default value: null * *  url:      URL to which the form data will be submitted. *            default value: value of form's 'action' attribute * *  method:   @deprecated use 'type' *  type:     The method in which the form data should be submitted, 'GET' or 'POST'. *            default value: value of form's 'method' attribute (or 'GET' if none found) * *  before:   @deprecated use 'beforeSubmit' *  beforeSubmit:  Callback method to be invoked before the form is submitted. *            default value: null * *  after:    @deprecated use 'success' *  success:  Callback method to be invoked after the form has been successfully submitted *            and the response has been returned from the server *            default value: null * *  dataType: Expected dataType of the response.  One of: null, 'xml', 'script', or 'json' *            default value: null * *  semantic: Boolean flag indicating whether data must be submitted in semantic order (slower). *            default value: false * *  resetForm: Boolean flag indicating whether the form should be reset if the submit is successful * *  clearForm: Boolean flag indicating whether the form should be cleared if the submit is successful * * * The 'beforeSubmit' callback can be provided as a hook for running pre-submit logic or for * validating the form data.  If the 'beforeSubmit' callback returns false then the form will * not be submitted. The 'beforeSubmit' callback is invoked with three arguments: the form data * in array format, the jQuery object, and the options object passed into ajaxSubmit. * The form data array takes the following form: * *     [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ] * * If a 'success' callback method is provided it is invoked after the response has been returned * from the server.  It is passed the responseText or responseXML value (depending on dataType). * See jQuery.ajax for further details. * * * The dataType option provides a means for specifying how the server response should be handled. * This maps directly to the jQuery.httpData method.  The following values are supported: * *      'xml':    if dataType == 'xml' the server response is treated as XML and the 'after' *                   callback method, if specified, will be passed the responseXML value *      'json':   if dataType == 'json' the server response will be evaluted and passed to *                   the 'after' callback, if specified *      'script': if dataType == 'script' the server response is evaluated in the global context * * * Note that it does not make sense to use both the 'target' and 'dataType' options.  If both * are provided the target will be ignored. * * The semantic argument can be used to force form serialization in semantic order. * This is normally true anyway, unless the form contains input elements of type='image'. * If your form must be submitted with name/value pairs in semantic order and your form * contains an input of type='image" then pass true for this arg, otherwise pass false * (or nothing) to avoid the overhead for this logic. * * * When used on its own, ajaxSubmit() is typically bound to a form's submit event like this: * * $("#form-id").submit(function() { *     $(this).ajaxSubmit(options); *     return false; // cancel conventional submit * }); * * When using ajaxForm(), however, this is done for you. * * @example * $('#myForm').ajaxSubmit(function(data) { *     alert('Form submit succeeded! Server returned: ' + data); * }); * @desc Submit form and alert server response * * * @example * var options = { *     target: '#myTargetDiv' * }; * $('#myForm').ajaxSubmit(options); * @desc Submit form and update page element with server response * * * @example * var options = { *     success: function(responseText) { *         alert(responseText); *     } * }; * $('#myForm').ajaxSubmit(options); * @desc Submit form and alert the server response * * * @example * var options = { *     beforeSubmit: function(formArray, jqForm) { *         if (formArray.length == 0) { *             alert('Please enter data.'); *             return false; *         } *     } * }; * $('#myForm').ajaxSubmit(options); * @desc Pre-submit validation which aborts the submit operation if form data is empty * * * @example * var options = { *     url: myJsonUrl.php, *     dataType: 'json', *     success: function(data) { *        // 'data' is an object representing the the evaluated json data *     } * }; * $('#myForm').ajaxSubmit(options); * @desc json data returned and evaluated * * * @example * var options = { *     url: myXmlUrl.php, *     dataType: 'xml', *     success: function(responseXML) { *        // responseXML is XML document object *        var data = $('myElement', responseXML).text(); *     } * }; * $('#myForm').ajaxSubmit(options); * @desc XML data returned from server * * * @example * var options = { *     resetForm: true * }; * $('#myForm').ajaxSubmit(options); * @desc submit form and reset it if successful * * @example * $('#myForm).submit(function() { *    $(this).ajaxSubmit(); *    return false; * }); * @desc Bind form's submit event to use ajaxSubmit * * * @name ajaxSubmit * @type jQuery * @param options  object literal containing options which control the form submission process * @cat Plugins/Form * @return jQuery * @see formToArray * @see ajaxForm * @see $.ajax * @author jQuery Community */jQuery.fn.ajaxSubmit = function(options) {    if (typeof options == 'function')        options = { success: options };    options = jQuery.extend({        url:    this.attr('action') || '',        method: this.attr('method') || 'GET'    }, options || {});    // remap deprecated options (temporarily)    options.success = options.success || options.after;    options.beforeSubmit = options.beforeSubmit || options.before;    options.type = options.type || options.method;    var a = this.formToArray(options.semantic);    // give pre-submit callback an opportunity to abort the submit    if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) return this;    var q = jQuery.param(a);    if (options.type.toUpperCase() == 'GET') {        // if url already has a '?' then append args after '&'        options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;        options.data = null;  // data is null for 'get'    }    else        options.data = q; // data is the query string for 'post'    var $form = this, callbacks = [];    if (options.resetForm) callbacks.push(function() { $form.resetForm(); });    if (options.clearForm) callbacks.push(function() { $form.clearForm(); });    // perform a load on the target only if dataType is not provided    if (!options.dataType && options.target) {        var oldSuccess = options.success || function(){};        callbacks.push(function(data, status) {            jQuery(options.target).attr("innerHTML", data).evalScripts().each(oldSuccess, [data, status]);        });    }    else if (options.success)        callbacks.push(options.success);    options.success = function(data, status) {        for (var i=0, max=callbacks.length; i < max; i++)            callbacks[i](data, status);    };    jQuery.ajax(options);    return this;};/** * ajaxForm() provides a mechanism for fully automating form submission. * * The advantages of using this method instead of ajaxSubmit() are: * * 1: This method will include coordinates for <input type="image" /> elements (if the element *    is used to submit the form). * 2. This method will include the submit element's name/value data (for the element that was *    used to submit the form). * 3. This method binds the submit() method to the form for you. * * Note that for accurate x/y coordinates of image submit elements in all browsers * you need to also use the "dimensions" plugin (this method will auto-detect its presence). * * The options argument for ajaxForm works exactly as it does for ajaxSubmit.  ajaxForm merely * passes the options argument along after properly binding events for submit elements and * the form itself.  See ajaxSubmit for a full description of the options argument. * * * @example * var options = { *     target: '#myTargetDiv' * }; * $('#myForm').ajaxSForm(options); * @desc Bind form's submit event so that 'myTargetDiv' is updated with the server response *       when the form is submitted. * * * @example * var options = { *     success: function(responseText) { *         alert(responseText); *     } * }; * $('#myForm').ajaxSubmit(options); * @desc Bind form's submit event so that server response is alerted after the form is submitted. * * * @example * var options = { *     beforeSubmit: function(formArray, jqForm) { *         if (formArray.length == 0) { *             alert('Please enter data.'); *             return false; *         } *     } * }; * $('#myForm').ajaxSubmit(options); * @desc Bind form's submit event so that pre-submit callback is invoked before the form *       is submitted. * * * @name   ajaxForm * @param  options  object literal containing options which control the form submission process * @return jQuery * @cat    Plugins/Form * @type   jQuery * @see    ajaxSubmit * @author jQuery Community */jQuery.fn.ajaxForm = function(options) {    return this.each(function() {        jQuery("input:submit,input:image,button:submit", this).click(function(ev) {            var $form = this.form;            $form.clk = this;            if (this.type == 'image') {                if (ev.offsetX != undefined) {                    $form.clk_x = ev.offsetX;                    $form.clk_y = ev.offsetY;                } else if (typeof jQuery.fn.offset == 'function') { // try to use dimensions plugin                    var offset = jQuery(this).offset();                    $form.clk_x = ev.pageX - offset.left;                    $form.clk_y = ev.pageY - offset.top;                } else {                    $form.clk_x = ev.pageX - this.offsetLeft;                    $form.clk_y = ev.pageY - this.offsetTop;                }            }            // clear form vars            setTimeout(function() {                $form.clk = $form.clk_x = $form.clk_y = null;                }, 10);        })    }).submit(function(e) {        jQuery(this).ajaxSubmit(options);        return false;    });};

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产sm精品调教视频网站| 日韩精品一区二区在线| www.日韩精品| av中文字幕在线不卡| 成人91在线观看| 99re热这里只有精品免费视频| 成人动漫一区二区| 99re视频这里只有精品| 91麻豆精品在线观看| 在线精品视频免费观看| 欧美色国产精品| 欧美一卡二卡三卡四卡| 精品国产3级a| 国产清纯在线一区二区www| 国产免费观看久久| 最近日韩中文字幕| 一区二区三区丝袜| 免费精品99久久国产综合精品| 久久精品免费观看| 国产精品综合在线视频| 99re免费视频精品全部| 欧美视频在线一区| 日韩欧美一二区| 欧美国产禁国产网站cc| 一区二区三区欧美亚洲| 天天av天天翘天天综合网| 蜜桃精品视频在线| 粉嫩绯色av一区二区在线观看| 91蜜桃在线免费视频| 欧美绝品在线观看成人午夜影视| 欧美xingq一区二区| 国产精品免费视频一区| 一区二区三区91| 紧缚捆绑精品一区二区| 波多野结衣一区二区三区| 欧美亚洲愉拍一区二区| 精品国产伦一区二区三区免费 | 国产亚洲精品bt天堂精选| 中文字幕欧美日韩一区| 亚洲福利视频导航| 国产乱码精品一区二区三| 色综合激情久久| 亚洲国产综合视频在线观看| 日韩成人av影视| 丁香天五香天堂综合| 成人美女视频在线看| 一区二区三区国产豹纹内裤在线| 免费观看日韩av| 国产精品一区三区| 国产91精品露脸国语对白| 欧美色偷偷大香| 欧美激情一区二区三区| 亚洲国产精品影院| 国产xxx精品视频大全| 欧美性一二三区| 国产女主播一区| 奇米精品一区二区三区在线观看| 99精品视频在线播放观看| 欧美本精品男人aⅴ天堂| 亚洲综合视频在线| 国产91精品一区二区| 欧美一级艳片视频免费观看| 亚洲麻豆国产自偷在线| 国产成人aaaa| 日韩欧美在线123| 亚洲成人午夜电影| 97精品国产露脸对白| 久久影音资源网| 免费欧美日韩国产三级电影| 欧美亚洲自拍偷拍| 成人免费在线视频| 国产69精品久久99不卡| 欧美xxxxx牲另类人与| 婷婷国产v国产偷v亚洲高清| 91高清视频在线| 国产精品久久久久久久久免费樱桃| 狠狠色丁香久久婷婷综合_中| 欧美日韩成人激情| 亚洲精品中文在线观看| 99久久精品情趣| 欧美国产成人在线| 国模娜娜一区二区三区| 91精品国产综合久久久久久漫画| 亚洲综合另类小说| 91免费看片在线观看| 最新成人av在线| av色综合久久天堂av综合| 国产亚洲一区二区三区| 狠狠色丁香久久婷婷综| 精品捆绑美女sm三区| 美女脱光内衣内裤视频久久网站 | 亚洲一区二区四区蜜桃| 99视频在线精品| 国产精品久久久久久久浪潮网站 | 欧美三级午夜理伦三级中视频| 国产精品免费丝袜| 成人av午夜电影| 亚洲国产高清在线| aaa亚洲精品一二三区| 国产精品乱码一区二区三区软件 | 欧美精品三级在线观看| 亚洲自拍偷拍九九九| 在线日韩一区二区| 亚洲一区二区美女| 欧美日韩国产在线观看| 丝袜亚洲精品中文字幕一区| 337p亚洲精品色噜噜| 久久99热国产| 国产色产综合产在线视频| 高清免费成人av| 中文字幕在线一区二区三区| 91首页免费视频| 亚洲国产aⅴ天堂久久| 在线播放中文一区| 久久精品国产99国产精品| 精品国产乱码久久久久久闺蜜| 国产一区二区三区免费播放| 国产日本欧美一区二区| 国产精品剧情在线亚洲| 99久久综合色| 亚洲国产综合在线| 日韩美女在线视频| 高清不卡一区二区| 亚洲综合一区在线| 欧美一区二区三区免费视频| 国产精品一区二区三区乱码| 国产精品福利一区| 欧美日韩国产免费| 黄网站免费久久| 国产精品麻豆99久久久久久| 欧洲国内综合视频| 免播放器亚洲一区| 亚洲国产精品激情在线观看| 色哟哟一区二区| 美女视频第一区二区三区免费观看网站| 久久久久久久综合色一本| 99r国产精品| 日韩电影免费在线| 国产亚洲精品精华液| 欧美色图一区二区三区| 精品午夜一区二区三区在线观看| 国产精品久线观看视频| 欧美精品日韩精品| 国产 日韩 欧美大片| 亚洲曰韩产成在线| 久久视频一区二区| 欧美视频一区二区在线观看| 黑人巨大精品欧美一区| 亚洲女同一区二区| 日韩欧美国产午夜精品| 91在线国产福利| 狠狠色丁香久久婷婷综| 亚洲一区二区三区中文字幕在线| 337p粉嫩大胆色噜噜噜噜亚洲| 99国产精品国产精品久久| 精品中文字幕一区二区小辣椒 | 99精品视频免费在线观看| 日产国产欧美视频一区精品 | 国产高清成人在线| 午夜视频一区二区三区| 国产女同性恋一区二区| 日韩亚洲欧美综合| 色香蕉成人二区免费| 国产一区二区三区在线观看免费视频| 亚洲精品视频免费看| 精品一区二区免费看| 亚洲曰韩产成在线| 国产精品人成在线观看免费| 在线播放日韩导航| 色综合天天天天做夜夜夜夜做| 国产一区二区美女诱惑| 秋霞电影一区二区| 亚洲一区二区三区四区五区中文 | 青青青伊人色综合久久| 一区二区三区资源| 国产精品污网站| 久久久久久97三级| 日韩美女一区二区三区| 欧美久久一二区| 91搞黄在线观看| 99re热视频精品| 成人app网站| 懂色av一区二区三区免费观看| 精品一区二区三区在线播放| 午夜欧美2019年伦理| 亚洲午夜久久久久久久久久久| 一区在线播放视频| 国产精品九色蝌蚪自拍| 国产日韩欧美精品在线| 精品久久久久99| 日韩免费高清av| 日韩欧美区一区二| 日韩欧美国产电影| 日韩小视频在线观看专区| 555www色欧美视频| 欧美欧美欧美欧美| 欧美日韩在线观看一区二区 | 色狠狠桃花综合| 91偷拍与自偷拍精品| 中文一区一区三区高中清不卡|