jquery sending Ajax requests cannot use arrays as parameters

Source: Internet
Author: User

jquery sending Ajax requests cannot use arrays as parameters, otherwise they will not receive parameters.

First, the JS code is as follows:

$ (' #delete-button '). Click (function () {
var selectedmembers = document.getelementsbyname (' selectedmembers ');
var cwids = new Array (); Defining arrays
for (Var i=0;i<selectedmembers.length;i++) {
if (selectedmembers[i].checked)
Cwids.push (Selectedmembers[i].value); Create a new array and add elements
}
var cwid = Cwids.join (","); To change a new array to a string type
if (cwids.length==0) {
Alert (' Please select at least one record ');
return false; Exit if not successful
}
$.post (' ${PAGECONTEXT.REQUEST.CONTEXTPATH}/CW/DELETECW ', {cwid:cwid},function (msg) {
if (msg) {alert ("delete succeeded"); Window.location.reload (); When the Ajax send request succeeds, it refreshes the page immediately and cancels the previously selected
var elements = document.getelementsbyname (' selectedmembers ');
if (elements) {
for (var i = 0; i < elements.length; i++) {
elements[i].checked = false;
}
}
}
else alert ("Delete failed");
});
});

jquery sending Ajax requests cannot use arrays as parameters

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.