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

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

?? jquery-plugins.js

?? 一個(gè)自?shī)首詷?lè)的demo 開(kāi)發(fā)環(huán)境 apache-tomcat-6.0.16 Mysql 5.1.11 Jdk 1.6 文件結(jié)構(gòu)如下 --MyGame -----MyGam
?? JS
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/** * formToArray() gathers form element data into an array of objects that can * be passed to any of the following ajax functions: $.get, $.post, or load. * Each object in the array has both a 'name' and 'value' property.  An example of * an array for a simple login form might be: * * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ] * * It is this array that is passed to pre-submit callback functions provided to the * ajaxSubmit() and ajaxForm() methods. * * 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. * * @example var data = $("#myForm").formToArray(); * $.post( "myscript.cgi", data ); * @desc Collect all the data from a form and submit it to the server. * * @name formToArray * @param semantic true if serialization must maintain strict semantic ordering of elements (slower) * @type Array<Object> * @cat Plugins/Form * @see ajaxForm * @see ajaxSubmit * @author jQuery Community */jQuery.fn.formToArray = function(semantic) {    var a = [];    if (this.length == 0) return a;    var form = this[0];    var els = semantic ? form.getElementsByTagName('*') : form.elements;    if (!els) return a;    for(var i=0, max=els.length; i < max; i++) {        var el = els[i];        var n = el.name;        if (!n) continue;        if (semantic && form.clk && el.type == "image") {            // handle image inputs on the fly when semantic == true            if(!el.disabled && form.clk == el)                a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});            continue;        }        var v = jQuery.fieldValue(el, true);        if (v === null) continue;        if (v.constructor == Array) {            for(var j=0, jmax=v.length; j < jmax; j++)                a.push({name: n, value: v[j]});        }        else            a.push({name: n, value: v});    }    if (!semantic && form.clk) {        // input type=='image' are not found in elements array! handle them here        var inputs = form.getElementsByTagName("input");        for(var i=0, max=inputs.length; i < max; i++) {            var input = inputs[i];            var n = input.name;            if(n && !input.disabled && input.type == "image" && form.clk == input)                a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});        }    }    return a;};/** * Serializes form data into a 'submittable' string. This method will return a string * in the format: name1=value1&amp;name2=value2 * * The semantic argument can be used to force form serialization in semantic order. * If your form must be submitted with name/value pairs in semantic order then pass * true for this arg, otherwise pass false (or nothing) to avoid the overhead for * this logic (which can be significant for very large forms). * * @example var data = $("#myForm").formSerialize(); * $.ajax('POST', "myscript.cgi", data); * @desc Collect all the data from a form into a single string * * @name formSerialize * @param semantic true if serialization must maintain strict semantic ordering of elements (slower) * @type String * @cat Plugins/Form * @see formToArray * @author jQuery Community */jQuery.fn.formSerialize = function(semantic) {    //hand off to jQuery.param for proper encoding    return jQuery.param(this.formToArray(semantic));};/** * Serializes all field elements in the jQuery object into a query string. * This method will return a string in the format: name1=value1&amp;name2=value2 * * The successful argument controls whether or not serialization is limited to * 'successful' controls (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls). * The default value of the successful argument is true. * * @example var data = $("input").formSerialize(); * @desc Collect the data from all successful input elements into a query string * * @example var data = $(":radio").formSerialize(); * @desc Collect the data from all successful radio input elements into a query string * * @example var data = $("#myForm :checkbox").formSerialize(); * @desc Collect the data from all successful checkbox input elements in myForm into a query string * * @example var data = $("#myForm :checkbox").formSerialize(false); * @desc Collect the data from all checkbox elements in myForm (even the unchecked ones) into a query string * * @example var data = $(":input").formSerialize(); * @desc Collect the data from all successful input, select, textarea and button elements into a query string * * @name fieldSerialize * @param successful true if only successful controls should be serialized (default is true) * @type String * @cat Plugins/Form */jQuery.fn.fieldSerialize = function(successful) {    var a = [];    this.each(function() {        var n = this.name;        if (!n) return;        var v = jQuery.fieldValue(this, successful);        if (v && v.constructor == Array) {            for (var i=0,max=v.length; i < max; i++)                a.push({name: n, value: v[i]});        }        else if (v !== null && typeof v != 'undefined')            a.push({name: this.name, value: v});    });    //hand off to jQuery.param for proper encoding    return jQuery.param(a);};/** * Returns the value of the field element in the jQuery object.  If there is more than one field element * in the jQuery object the value of the first successful one is returned. * * The successful argument controls whether or not the field element must be 'successful' * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls). * The default value of the successful argument is true.  If this value is false then * the value of the first field element in the jQuery object is returned. * * Note: If no valid value can be determined the return value will be undifined. * * Note: The fieldValue returned for a select-multiple element or for a checkbox input will *       always be an array if it is not undefined. * * * @example var data = $("#myPasswordElement").formValue(); * @desc Gets the current value of the myPasswordElement element * * @example var data = $("#myForm :input").formValue(); * @desc Get the value of the first successful control in the jQuery object. * * @example var data = $("#myForm :checkbox").formValue(); * @desc Get the array of values for the first set of successful checkbox controls in the jQuery object. * * @example var data = $("#mySingleSelect").formValue(); * @desc Get the value of the select control * * @example var data = $("#myMultiSelect").formValue(); * @desc Get the array of selected values for the select-multiple control * * @name fieldValue * @param Boolean successful true if value returned must be for a successful controls (default is true) * @type String or Array<String> * @cat Plugins/Form */jQuery.fn.fieldValue = function(successful) {    var cbVal, cbName;    // loop until we find a value    for (var i=0, max=this.length; i < max; i++) {        var el = this[i];        var v = jQuery.fieldValue(el, successful);        if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length))            continue;        // for checkboxes, consider multiple elements, for everything else just return first valid value        if (el.type != 'checkbox') return v;        cbName = cbName || el.name;        if (cbName != el.name) // return if we hit a checkbox with a different name            return cbVal;        cbVal = cbVal || [];        cbVal.push(v);    }    return cbVal;};/** * Returns the value of the field element. * * The successful argument controls whether or not the field element must be 'successful' * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls). * The default value of the successful argument is true.  If the given element is not * successful and the successful arg is not false then the returned value will be null. * * Note: The fieldValue returned for a select-multiple element will always be an array. * * @example var data = jQuery.fieldValue($("#myPasswordElement")[0]); * @desc Gets the current value of the myPasswordElement element * * @name fieldValue * @param Element el The DOM element for which the value will be returned * @param Boolean successful true if value returned must be for a successful controls (default is true) * @type String or Array<String> * @cat Plugins/Form */jQuery.fieldValue = function(el, successful) {    var n = el.name, t = el.type, tag = el.tagName.toLowerCase();    if (typeof successful == 'undefined') successful = true;    if (successful && ( !n || el.disabled || t == 'reset' ||        (t == 'checkbox' || t == 'radio') && !el.checked ||        (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||        tag == 'select' && el.selectedIndex == -1))            return null;    if (tag == 'select') {        var index = el.selectedIndex;        if (index < 0) return null;        var a = [], ops = el.options;        var one = (t == 'select-one');        var max = (one ? index+1 : ops.length);        for(var i=(one ? index : 0); i < max; i++) {            var op = ops[i];            if (op.selected) {                // extra pain for IE...                var v = jQuery.browser.msie && !(op.attributes['value'].specified) ? op.text : op.value;                if (one) return v;                a.push(v);            }        }        return a;    }    return el.value;};/** * Clears the form data.  Takes the following actions on the form's input fields: *  - input text fields will have their 'value' property set to the empty string *  - select elements will have their 'selectedIndex' property set to -1 *  - checkbox and radio inputs will have their 'checked' property set to false *  - inputs of type submit, button, reset, and hidden will *not* be effected *  - button elements will *not* be effected * * @example $('form').clearForm(); * @desc Clears all forms on the page. * * @name clearForm * @type jQuery * @cat Plugins/Form * @see resetForm */jQuery.fn.clearForm = function() {    return this.each(function() {        jQuery('input,select,textarea', this).clearFields();    });};/** * Clears the selected form elements.  Takes the following actions on the matched elements: *  - input text fields will have their 'value' property set to the empty string *  - select elements will have their 'selectedIndex' property set to -1 *  - checkbox and radio inputs will have their 'checked' property set to false *  - inputs of type submit, button, reset, and hidden will *not* be effected *  - button elements will *not* be effected * * @example $('.myInputs').clearFields(); * @desc Clears all inputs with class myInputs * * @name clearFields * @type jQuery * @cat Plugins/Form * @see clearForm */jQuery.fn.clearFields = jQuery.fn.clearInputs = function() {    return this.each(function() {        var t = this.type, tag = this.tagName.toLowerCase();        if (t == 'text' || t == 'password' || tag == 'textarea')            this.value = '';        else if (t == 'checkbox' || t == 'radio')            this.checked = false;        else if (tag == 'select')            this.selectedIndex = -1;    });};/** * Resets the form data.  Causes all form elements to be reset to their original value. * * @example $('form').resetForm(); * @desc Resets all forms on the page. * * @name resetForm * @type jQuery * @cat Plugins/Form * @see clearForm */jQuery.fn.resetForm = function() {    return this.each(function() {        // guard against an input with the name of 'reset'        // note that IE reports the reset function as an 'object'        if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType))            this.reset();    });};

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产在线日韩欧美| 久久成人精品无人区| 欧美剧在线免费观看网站 | 欧美天堂一区二区三区| 精品无码三级在线观看视频| 一区二区在线观看视频| 国产视频一区在线观看| 制服.丝袜.亚洲.另类.中文| 91色porny| 国产成人综合在线观看| 日韩精品色哟哟| 亚洲精品欧美在线| 亚洲欧洲精品天堂一级| xvideos.蜜桃一区二区| 91精品国产欧美一区二区成人 | 日韩制服丝袜av| 亚洲精品国产a| 国产精品毛片久久久久久 | 亚洲精品日韩专区silk| 国产精品免费av| 日韩欧美电影一二三| 欧美色图免费看| 9色porny自拍视频一区二区| 国产91精品免费| 韩国v欧美v亚洲v日本v| 蜜桃一区二区三区四区| 午夜精品久久久久久| 亚洲美女区一区| 国产精品久久看| 国产精品欧美综合在线| 国产日韩欧美综合一区| 久久午夜色播影院免费高清| 日韩欧美一级片| 欧美一级一区二区| 欧美一卡2卡3卡4卡| 日韩一区二区电影| 91精品国产色综合久久| 日韩一区二区在线观看视频播放| 51精品秘密在线观看| 欧美日韩国产精品成人| 欧美日韩国产另类一区| 91精品国产综合久久精品性色| 欧美视频一区二区三区| 欧美日韩成人综合在线一区二区| 欧美四级电影在线观看| 欧美精品免费视频| 91精品国产乱| 精品欧美久久久| 国产亚洲一区二区三区| 欧美国产成人在线| 中文字幕一区二区三| 亚洲色图在线视频| 亚洲精品少妇30p| 天天综合色天天综合色h| 日本中文字幕不卡| 蜜臀av性久久久久蜜臀aⅴ| 精品一区二区三区免费| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 欧美精品 日韩| 欧美不卡123| 国产精品久久二区二区| 一区二区三区中文字幕| 婷婷久久综合九色综合伊人色| 日本欧美肥老太交大片| 国产精品18久久久| 色综合天天天天做夜夜夜夜做| 欧美在线综合视频| 日韩欧美aaaaaa| 久久久久久久久久久黄色| 亚洲欧洲日韩综合一区二区| 亚洲一区二区视频在线观看| 奇米色777欧美一区二区| 国产一区三区三区| 91麻豆精品视频| 91精品福利在线一区二区三区| 久久久久国产精品免费免费搜索| 国产精品女上位| 午夜视频在线观看一区| 国产一区二区网址| 91久久线看在观草草青青| 日韩视频不卡中文| 国产精品视频第一区| 天天色综合成人网| 粉嫩嫩av羞羞动漫久久久| 欧美日韩视频在线观看一区二区三区 | 高清av一区二区| 欧美日韩亚洲国产综合| 国产女人18水真多18精品一级做 | 国产风韵犹存在线视精品| 欧美影院一区二区| 久久影院午夜片一区| 亚洲综合在线电影| 国产精品一区二区视频| 欧美调教femdomvk| 中文字幕日韩精品一区| 麻豆一区二区在线| 欧洲人成人精品| 国产视频亚洲色图| 免费av网站大全久久| 欧美专区亚洲专区| 中文字幕日本乱码精品影院| 久久成人av少妇免费| 欧美日韩一级片在线观看| 国产精品成人免费精品自在线观看| 五月综合激情婷婷六月色窝| 97久久精品人人做人人爽 | 亚洲国产精品自拍| av网站一区二区三区| 2017欧美狠狠色| 日本中文字幕不卡| 欧美日韩国产成人在线免费| 亚洲丶国产丶欧美一区二区三区| 国产精品中文字幕欧美| 欧美日韩夫妻久久| 亚洲欧美日韩精品久久久久| 国产精品伊人色| 日韩欧美国产系列| 日本伊人午夜精品| 欧美视频精品在线| 一区二区三区国产精华| 99久久综合99久久综合网站| 久久久www成人免费无遮挡大片| 奇米在线7777在线精品| 欧美日韩在线直播| 一区二区三区日韩欧美| 91麻豆国产福利精品| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆 | 欧美精品777| 天使萌一区二区三区免费观看| 欧美在线一区二区三区| 亚洲一区二区中文在线| 一本到三区不卡视频| 亚洲欧美激情插| 色一情一伦一子一伦一区| 亚洲精品国久久99热| 色婷婷综合久久久久中文| 亚洲精品乱码久久久久久| 91麻豆123| 亚洲风情在线资源站| 在线播放视频一区| 丝袜诱惑亚洲看片| 日韩亚洲欧美一区| 国内外精品视频| 国产午夜三级一区二区三| 成人短视频下载| 亚洲欧美日韩在线| 欧美色欧美亚洲另类二区| 五月婷婷久久综合| 日韩精品影音先锋| 国产精品一级在线| 国产精品另类一区| 91成人在线免费观看| 午夜精品一区二区三区免费视频 | 一本色道a无线码一区v| 亚洲亚洲人成综合网络| 欧美视频自拍偷拍| 水野朝阳av一区二区三区| 日韩精品一区二区三区蜜臀| 国产成人精品亚洲午夜麻豆| 中文字幕一区二区三区不卡在线| 色哦色哦哦色天天综合| 视频一区在线播放| 久久久久久麻豆| 91久久久免费一区二区| 日本aⅴ精品一区二区三区| 日本欧美肥老太交大片| 国产日本欧洲亚洲| 91国模大尺度私拍在线视频| 日本成人在线网站| 久久精品在线观看| 91福利资源站| 麻豆精品视频在线观看免费| 国产精品丝袜一区| 欧美日韩国产一区| 国产精品1区2区| 亚洲国产婷婷综合在线精品| 精品久久久久久亚洲综合网 | 国产美女娇喘av呻吟久久| 亚洲色图一区二区三区| 日韩精品一区二区三区在线| 成人午夜电影网站| 日韩精品电影一区亚洲| 一色屋精品亚洲香蕉网站| 日韩欧美不卡在线观看视频| 91在线观看下载| 理论电影国产精品| 亚洲乱码中文字幕| 欧美精品一区二区三区在线 | 色老汉一区二区三区| 韩国av一区二区三区四区| 亚洲国产婷婷综合在线精品| 国产区在线观看成人精品| 欧美精品一卡二卡| 色综合中文字幕国产| 蜜桃在线一区二区三区| 亚洲精品综合在线| 国产欧美日韩在线观看| 日韩欧美资源站| 在线免费一区三区| 成人午夜在线播放|