Form.js
上传用户:prospercnc
上传日期:2019-12-08
资源大小:1314k
文件大小:23k
源码类别:

弱点检测代码

开发平台:

ASP/ASPX

  1. /*
  2.  * jQuery Form Plugin
  3.  * version: 2.28 (10-MAY-2009)
  4.  * @requires jQuery v1.2.2 or later
  5.  *
  6.  * Examples and documentation at: http://malsup.com/jquery/form/
  7.  * Dual licensed under the MIT and GPL licenses:
  8.  *   http://www.opensource.org/licenses/mit-license.php
  9.  *   http://www.gnu.org/licenses/gpl.html
  10.  */
  11. ;(function($) {
  12. /*
  13.     Usage Note:
  14.     -----------
  15.     Do not use both ajaxSubmit and ajaxForm on the same form.  These
  16.     functions are intended to be exclusive.  Use ajaxSubmit if you want
  17.     to bind your own submit handler to the form.  For example,
  18.     $(document).ready(function() {
  19.         $('#myForm').bind('submit', function() {
  20.             $(this).ajaxSubmit({
  21.                 target: '#output'
  22.             });
  23.             return false; // <-- important!
  24.         });
  25.     });
  26.     Use ajaxForm when you want the plugin to manage all the event binding
  27.     for you.  For example,
  28.     $(document).ready(function() {
  29.         $('#myForm').ajaxForm({
  30.             target: '#output'
  31.         });
  32.     });
  33.     When using ajaxForm, the ajaxSubmit function will be invoked for you
  34.     at the appropriate time.
  35. */
  36. /**
  37.  * ajaxSubmit() provides a mechanism for immediately submitting
  38.  * an HTML form using AJAX.
  39.  */
  40. $.fn.ajaxSubmit = function(options) {
  41.     // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
  42.     if (!this.length) {
  43.         log('ajaxSubmit: skipping submit process - no element selected');
  44.         return this;
  45.     }
  46.     if (typeof options == 'function')
  47.         options = { success: options };
  48.     var url = $.trim(this.attr('action'));
  49.     if (url) {
  50.     // clean url (don't include hash vaue)
  51.     url = (url.match(/^([^#]+)/)||[])[1];
  52.     }
  53.     url = url || window.location.href || ''
  54.     options = $.extend({
  55.         url:  url,
  56.         type: this.attr('method') || 'GET'
  57.     }, options || {});
  58.     // hook for manipulating the form data before it is extracted;
  59.     // convenient for use with rich editors like tinyMCE or FCKEditor
  60.     var veto = {};
  61.     this.trigger('form-pre-serialize', [this, options, veto]);
  62.     if (veto.veto) {
  63.         log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
  64.         return this;
  65.     }
  66.     // provide opportunity to alter form data before it is serialized
  67.     if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
  68.         log('ajaxSubmit: submit aborted via beforeSerialize callback');
  69.         return this;
  70.     }
  71.     var a = this.formToArray(options.semantic);
  72.     if (options.data) {
  73.         options.extraData = options.data;
  74.         for (var n in options.data) {
  75.           if(options.data[n] instanceof Array) {
  76.             for (var k in options.data[n])
  77.               a.push( { name: n, value: options.data[n][k] } );
  78.           }
  79.           else
  80.              a.push( { name: n, value: options.data[n] } );
  81.         }
  82.     }
  83.     // give pre-submit callback an opportunity to abort the submit
  84.     if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
  85.         log('ajaxSubmit: submit aborted via beforeSubmit callback');
  86.         return this;
  87.     }
  88.     // fire vetoable 'validate' event
  89.     this.trigger('form-submit-validate', [a, this, options, veto]);
  90.     if (veto.veto) {
  91.         log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
  92.         return this;
  93.     }
  94.     var q = $.param(a);
  95.     if (options.type.toUpperCase() == 'GET') {
  96.         options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
  97.         options.data = null;  // data is null for 'get'
  98.     }
  99.     else
  100.         options.data = q; // data is the query string for 'post'
  101.     var $form = this, callbacks = [];
  102.     if (options.resetForm) callbacks.push(function() { $form.resetForm(); });
  103.     if (options.clearForm) callbacks.push(function() { $form.clearForm(); });
  104.     // perform a load on the target only if dataType is not provided
  105.     if (!options.dataType && options.target) {
  106.         var oldSuccess = options.success || function(){};
  107.         callbacks.push(function(data) {
  108.             $(options.target).html(data).each(oldSuccess, arguments);
  109.         });
  110.     }
  111.     else if (options.success)
  112.         callbacks.push(options.success);
  113.     options.success = function(data, status) {
  114.         for (var i=0, max=callbacks.length; i < max; i++)
  115.             callbacks[i].apply(options, [data, status, $form]);
  116.     };
  117.     // are there files to upload?
  118.     var files = $('input:file', this).fieldValue();
  119.     var found = false;
  120.     for (var j=0; j < files.length; j++)
  121.         if (files[j])
  122.             found = true;
  123. var multipart = false;
  124. // var mp = 'multipart/form-data';
  125. // multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
  126.     // options.iframe allows user to force iframe mode
  127.    if (options.iframe || found || multipart) {
  128.        // hack to fix Safari hang (thanks to Tim Molendijk for this)
  129.        // see:  http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
  130.        if (options.closeKeepAlive)
  131.            $.get(options.closeKeepAlive, fileUpload);
  132.        else
  133.            fileUpload();
  134.        }
  135.    else
  136.        $.ajax(options);
  137.     // fire 'notify' event
  138.     this.trigger('form-submit-notify', [this, options]);
  139.     return this;
  140.     // private function for handling file uploads (hat tip to YAHOO!)
  141.     function fileUpload() {
  142.         var form = $form[0];
  143.         if ($(':input[name=submit]', form).length) {
  144.             alert('Error: Form elements must not be named "submit".');
  145.             return;
  146.         }
  147.         var opts = $.extend({}, $.ajaxSettings, options);
  148. var s = $.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);
  149.         var id = 'jqFormIO' + (new Date().getTime());
  150.         var $io = $('<iframe id="' + id + '" name="' + id + '" src="about:blank" />');
  151.         var io = $io[0];
  152.         $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
  153.         var xhr = { // mock object
  154.             aborted: 0,
  155.             responseText: null,
  156.             responseXML: null,
  157.             status: 0,
  158.             statusText: 'n/a',
  159.             getAllResponseHeaders: function() {},
  160.             getResponseHeader: function() {},
  161.             setRequestHeader: function() {},
  162.             abort: function() {
  163.                 this.aborted = 1;
  164.                 $io.attr('src','about:blank'); // abort op in progress
  165.             }
  166.         };
  167.         var g = opts.global;
  168.         // trigger ajax global events so that activity/block indicators work like normal
  169.         if (g && ! $.active++) $.event.trigger("ajaxStart");
  170.         if (g) $.event.trigger("ajaxSend", [xhr, opts]);
  171. if (s.beforeSend && s.beforeSend(xhr, s) === false) {
  172. s.global && $.active--;
  173. return;
  174.         }
  175.         if (xhr.aborted)
  176.             return;
  177.         var cbInvoked = 0;
  178.         var timedOut = 0;
  179.         // add submitting element to data if we know it
  180.         var sub = form.clk;
  181.         if (sub) {
  182.             var n = sub.name;
  183.             if (n && !sub.disabled) {
  184.                 options.extraData = options.extraData || {};
  185.                 options.extraData[n] = sub.value;
  186.                 if (sub.type == "image") {
  187.                     options.extraData[name+'.x'] = form.clk_x;
  188.                     options.extraData[name+'.y'] = form.clk_y;
  189.                 }
  190.             }
  191.         }
  192.         // take a breath so that pending repaints get some cpu time before the upload starts
  193.         setTimeout(function() {
  194.             // make sure form attrs are set
  195.             var t = $form.attr('target'), a = $form.attr('action');
  196. // update form attrs in IE friendly way
  197. form.setAttribute('target',id);
  198. if (form.getAttribute('method') != 'POST')
  199. form.setAttribute('method', 'POST');
  200. if (form.getAttribute('action') != opts.url)
  201. form.setAttribute('action', opts.url);
  202.             // ie borks in some cases when setting encoding
  203.             if (! options.skipEncodingOverride) {
  204.                 $form.attr({
  205.                     encoding: 'multipart/form-data',
  206.                     enctype:  'multipart/form-data'
  207.                 });
  208.             }
  209.             // support timout
  210.             if (opts.timeout)
  211.                 setTimeout(function() { timedOut = true; cb(); }, opts.timeout);
  212.             // add "extra" data to form if provided in options
  213.             var extraInputs = [];
  214.             try {
  215.                 if (options.extraData)
  216.                     for (var n in options.extraData)
  217.                         extraInputs.push(
  218.                             $('<input type="hidden" name="'+n+'" value="'+options.extraData[n]+'" />')
  219.                                 .appendTo(form)[0]);
  220.                 // add iframe to doc and submit the form
  221.                 $io.appendTo('body');
  222.                 io.attachEvent ? io.attachEvent('onload', cb) : io.addEventListener('load', cb, false);
  223.                 form.submit();
  224.             }
  225.             finally {
  226.                 // reset attrs and remove "extra" input elements
  227. form.setAttribute('action',a);
  228.                 t ? form.setAttribute('target', t) : $form.removeAttr('target');
  229.                 $(extraInputs).remove();
  230.             }
  231.         }, 10);
  232.         var nullCheckFlag = 0;
  233.         function cb() {
  234.             if (cbInvoked++) return;
  235.             io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false);
  236.             var ok = true;
  237.             try {
  238.                 if (timedOut) throw 'timeout';
  239.                 // extract the server response from the iframe
  240.                 var data, doc;
  241.                 doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
  242.                 if ((doc.body == null || doc.body.innerHTML == '') && !nullCheckFlag) {
  243.                     // in some browsers (cough, Opera 9.2.x) the iframe DOM is not always traversable when
  244.                     // the onload callback fires, so we give them a 2nd chance
  245.                     nullCheckFlag = 1;
  246.                     cbInvoked--;
  247.                     setTimeout(cb, 100);
  248.                     return;
  249.                 }
  250.                 xhr.responseText = doc.body ? doc.body.innerHTML : null;
  251.                 xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
  252.                 xhr.getResponseHeader = function(header){
  253.                     var headers = {'content-type': opts.dataType};
  254.                     return headers[header];
  255.                 };
  256.                 if (opts.dataType == 'json' || opts.dataType == 'script') {
  257.                     var ta = doc.getElementsByTagName('textarea')[0];
  258.                     xhr.responseText = ta ? ta.value : xhr.responseText;
  259.                 }
  260.                 else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
  261.                     xhr.responseXML = toXml(xhr.responseText);
  262.                 }
  263.                 data = $.httpData(xhr, opts.dataType);
  264.             }
  265.             catch(e){
  266.                 ok = false;
  267.                 $.handleError(opts, xhr, 'error', e);
  268.             }
  269.             // ordering of these callbacks/triggers is odd, but that's how $.ajax does it
  270.             if (ok) {
  271.                 opts.success(data, 'success');
  272.                 if (g) $.event.trigger("ajaxSuccess", [xhr, opts]);
  273.             }
  274.             if (g) $.event.trigger("ajaxComplete", [xhr, opts]);
  275.             if (g && ! --$.active) $.event.trigger("ajaxStop");
  276.             if (opts.complete) opts.complete(xhr, ok ? 'success' : 'error');
  277.             // clean up
  278.             setTimeout(function() {
  279.                 $io.remove();
  280.                 xhr.responseXML = null;
  281.             }, 100);
  282.         };
  283.         function toXml(s, doc) {
  284.             if (window.ActiveXObject) {
  285.                 doc = new ActiveXObject('Microsoft.XMLDOM');
  286.                 doc.async = 'false';
  287.                 doc.loadXML(s);
  288.             }
  289.             else
  290.                 doc = (new DOMParser()).parseFromString(s, 'text/xml');
  291.             return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
  292.         };
  293.     };
  294. };
  295. /**
  296.  * ajaxForm() provides a mechanism for fully automating form submission.
  297.  *
  298.  * The advantages of using this method instead of ajaxSubmit() are:
  299.  *
  300.  * 1: This method will include coordinates for <input type="image" /> elements (if the element
  301.  *    is used to submit the form).
  302.  * 2. This method will include the submit element's name/value data (for the element that was
  303.  *    used to submit the form).
  304.  * 3. This method binds the submit() method to the form for you.
  305.  *
  306.  * The options argument for ajaxForm works exactly as it does for ajaxSubmit.  ajaxForm merely
  307.  * passes the options argument along after properly binding events for submit elements and
  308.  * the form itself.
  309.  */
  310. $.fn.ajaxForm = function(options) {
  311.     return this.ajaxFormUnbind().bind('submit.form-plugin',function() {
  312.         $(this).ajaxSubmit(options);
  313.         return false;
  314.     }).each(function() {
  315.         // store options in hash
  316.         $(":submit,input:image", this).bind('click.form-plugin',function(e) {
  317.             var form = this.form;
  318.             form.clk = this;
  319.             if (this.type == 'image') {
  320.                 if (e.offsetX != undefined) {
  321.                     form.clk_x = e.offsetX;
  322.                     form.clk_y = e.offsetY;
  323.                 } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
  324.                     var offset = $(this).offset();
  325.                     form.clk_x = e.pageX - offset.left;
  326.                     form.clk_y = e.pageY - offset.top;
  327.                 } else {
  328.                     form.clk_x = e.pageX - this.offsetLeft;
  329.                     form.clk_y = e.pageY - this.offsetTop;
  330.                 }
  331.             }
  332.             // clear form vars
  333.             setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 10);
  334.         });
  335.     });
  336. };
  337. // ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
  338. $.fn.ajaxFormUnbind = function() {
  339.     this.unbind('submit.form-plugin');
  340.     return this.each(function() {
  341.         $(":submit,input:image", this).unbind('click.form-plugin');
  342.     });
  343. };
  344. /**
  345.  * formToArray() gathers form element data into an array of objects that can
  346.  * be passed to any of the following ajax functions: $.get, $.post, or load.
  347.  * Each object in the array has both a 'name' and 'value' property.  An example of
  348.  * an array for a simple login form might be:
  349.  *
  350.  * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
  351.  *
  352.  * It is this array that is passed to pre-submit callback functions provided to the
  353.  * ajaxSubmit() and ajaxForm() methods.
  354.  */
  355. $.fn.formToArray = function(semantic) {
  356.     var a = [];
  357.     if (this.length == 0) return a;
  358.     var form = this[0];
  359.     var els = semantic ? form.getElementsByTagName('*') : form.elements;
  360.     if (!els) return a;
  361.     for(var i=0, max=els.length; i < max; i++) {
  362.         var el = els[i];
  363.         var n = el.name;
  364.         if (!n) continue;
  365.         if (semantic && form.clk && el.type == "image") {
  366.             // handle image inputs on the fly when semantic == true
  367.             if(!el.disabled && form.clk == el) {
  368.              a.push({name: n, value: $(el).val()});
  369.                 a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
  370.             }
  371.             continue;
  372.         }
  373.         var v = $.fieldValue(el, true);
  374.         if (v && v.constructor == Array) {
  375.             for(var j=0, jmax=v.length; j < jmax; j++)
  376.                 a.push({name: n, value: v[j]});
  377.         }
  378.         else if (v !== null && typeof v != 'undefined')
  379.             a.push({name: n, value: v});
  380.     }
  381.     if (!semantic && form.clk) {
  382.         // input type=='image' are not found in elements array! handle it here
  383.         var $input = $(form.clk), input = $input[0], n = input.name;
  384.         if (n && !input.disabled && input.type == 'image') {
  385.          a.push({name: n, value: $input.val()});
  386.             a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
  387.         }
  388.     }
  389.     return a;
  390. };
  391. /**
  392.  * Serializes form data into a 'submittable' string. This method will return a string
  393.  * in the format: name1=value1&amp;name2=value2
  394.  */
  395. $.fn.formSerialize = function(semantic) {
  396.     //hand off to jQuery.param for proper encoding
  397.     return $.param(this.formToArray(semantic));
  398. };
  399. /**
  400.  * Serializes all field elements in the jQuery object into a query string.
  401.  * This method will return a string in the format: name1=value1&amp;name2=value2
  402.  */
  403. $.fn.fieldSerialize = function(successful) {
  404.     var a = [];
  405.     this.each(function() {
  406.         var n = this.name;
  407.         if (!n) return;
  408.         var v = $.fieldValue(this, successful);
  409.         if (v && v.constructor == Array) {
  410.             for (var i=0,max=v.length; i < max; i++)
  411.                 a.push({name: n, value: v[i]});
  412.         }
  413.         else if (v !== null && typeof v != 'undefined')
  414.             a.push({name: this.name, value: v});
  415.     });
  416.     //hand off to jQuery.param for proper encoding
  417.     return $.param(a);
  418. };
  419. /**
  420.  * Returns the value(s) of the element in the matched set.  For example, consider the following form:
  421.  *
  422.  *  <form><fieldset>
  423.  *      <input name="A" type="text" />
  424.  *      <input name="A" type="text" />
  425.  *      <input name="B" type="checkbox" value="B1" />
  426.  *      <input name="B" type="checkbox" value="B2"/>
  427.  *      <input name="C" type="radio" value="C1" />
  428.  *      <input name="C" type="radio" value="C2" />
  429.  *  </fieldset></form>
  430.  *
  431.  *  var v = $(':text').fieldValue();
  432.  *  // if no values are entered into the text inputs
  433.  *  v == ['','']
  434.  *  // if values entered into the text inputs are 'foo' and 'bar'
  435.  *  v == ['foo','bar']
  436.  *
  437.  *  var v = $(':checkbox').fieldValue();
  438.  *  // if neither checkbox is checked
  439.  *  v === undefined
  440.  *  // if both checkboxes are checked
  441.  *  v == ['B1', 'B2']
  442.  *
  443.  *  var v = $(':radio').fieldValue();
  444.  *  // if neither radio is checked
  445.  *  v === undefined
  446.  *  // if first radio is checked
  447.  *  v == ['C1']
  448.  *
  449.  * The successful argument controls whether or not the field element must be 'successful'
  450.  * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
  451.  * The default value of the successful argument is true.  If this value is false the value(s)
  452.  * for each element is returned.
  453.  *
  454.  * Note: This method *always* returns an array.  If no valid value can be determined the
  455.  *       array will be empty, otherwise it will contain one or more values.
  456.  */
  457. $.fn.fieldValue = function(successful) {
  458.     for (var val=[], i=0, max=this.length; i < max; i++) {
  459.         var el = this[i];
  460.         var v = $.fieldValue(el, successful);
  461.         if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length))
  462.             continue;
  463.         v.constructor == Array ? $.merge(val, v) : val.push(v);
  464.     }
  465.     return val;
  466. };
  467. /**
  468.  * Returns the value of the field element.
  469.  */
  470. $.fieldValue = function(el, successful) {
  471.     var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
  472.     if (typeof successful == 'undefined') successful = true;
  473.     if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
  474.         (t == 'checkbox' || t == 'radio') && !el.checked ||
  475.         (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
  476.         tag == 'select' && el.selectedIndex == -1))
  477.             return null;
  478.     if (tag == 'select') {
  479.         var index = el.selectedIndex;
  480.         if (index < 0) return null;
  481.         var a = [], ops = el.options;
  482.         var one = (t == 'select-one');
  483.         var max = (one ? index+1 : ops.length);
  484.         for(var i=(one ? index : 0); i < max; i++) {
  485.             var op = ops[i];
  486.             if (op.selected) {
  487. var v = op.value;
  488. if (!v) // extra pain for IE...
  489.                  v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
  490.                 if (one) return v;
  491.                 a.push(v);
  492.             }
  493.         }
  494.         return a;
  495.     }
  496.     return el.value;
  497. };
  498. /**
  499.  * Clears the form data.  Takes the following actions on the form's input fields:
  500.  *  - input text fields will have their 'value' property set to the empty string
  501.  *  - select elements will have their 'selectedIndex' property set to -1
  502.  *  - checkbox and radio inputs will have their 'checked' property set to false
  503.  *  - inputs of type submit, button, reset, and hidden will *not* be effected
  504.  *  - button elements will *not* be effected
  505.  */
  506. $.fn.clearForm = function() {
  507.     return this.each(function() {
  508.         $('input,select,textarea', this).clearFields();
  509.     });
  510. };
  511. /**
  512.  * Clears the selected form elements.
  513.  */
  514. $.fn.clearFields = $.fn.clearInputs = function() {
  515.     return this.each(function() {
  516.         var t = this.type, tag = this.tagName.toLowerCase();
  517.         if (t == 'text' || t == 'password' || tag == 'textarea')
  518.             this.value = '';
  519.         else if (t == 'checkbox' || t == 'radio')
  520.             this.checked = false;
  521.         else if (tag == 'select')
  522.             this.selectedIndex = -1;
  523.     });
  524. };
  525. /**
  526.  * Resets the form data.  Causes all form elements to be reset to their original value.
  527.  */
  528. $.fn.resetForm = function() {
  529.     return this.each(function() {
  530.         // guard against an input with the name of 'reset'
  531.         // note that IE reports the reset function as an 'object'
  532.         if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType))
  533.             this.reset();
  534.     });
  535. };
  536. /**
  537.  * Enables or disables any matching elements.
  538.  */
  539. $.fn.enable = function(b) {
  540.     if (b == undefined) b = true;
  541.     return this.each(function() {
  542.         this.disabled = !b;
  543.     });
  544. };
  545. /**
  546.  * Checks/unchecks any matching checkboxes or radio buttons and
  547.  * selects/deselects and matching option elements.
  548.  */
  549. $.fn.selected = function(select) {
  550.     if (select == undefined) select = true;
  551.     return this.each(function() {
  552.         var t = this.type;
  553.         if (t == 'checkbox' || t == 'radio')
  554.             this.checked = select;
  555.         else if (this.tagName.toLowerCase() == 'option') {
  556.             var $sel = $(this).parent('select');
  557.             if (select && $sel[0] && $sel[0].type == 'select-one') {
  558.                 // deselect all other options
  559.                 $sel.find('option').selected(false);
  560.             }
  561.             this.selected = select;
  562.         }
  563.     });
  564. };
  565. // helper fn for console logging
  566. // set $.fn.ajaxSubmit.debug to true to enable debug logging
  567. function log() {
  568.     if ($.fn.ajaxSubmit.debug && window.console && window.console.log)
  569.         window.console.log('[jquery.form] ' + Array.prototype.join.call(arguments,''));
  570. };
  571. })(jQuery);