日期:2014-05-17 浏览次数:20450 次
function shenhe() {
var checks = "";
$("input[name='ck']").each(function () {
if ($(this).attr("checked") == true) {
checks += $(this).val() + ",";
}
});
if (checks == "") {
return false;
};
$.ajax({
type: "post",
url: encodeURI("../ashx/test.ashx"),
data: { "action": "test", "ck": checks },
cache: false,
dataType: "json",
success: function (data) {
if (data.msg == "0") {
alert(data.msgbox);
location.reload();