在使用$.post提交数据时,有一个数据是复选框获取数据,所以在当前页面获取到复选框选中的值并提交到后端卡住了一下,解决方法如下:
这两个input就是复选框的内容:
str += "<input type='checkbox' name="+"type[]"+" value='1'>北京";
str += "<input type='checkbox' name="+"type[]"+" value='2'>上海";
获取复选框选选中的内容:
1 var type = []; //定义数组用来存放数据 2 $("input[type='checkbox']:checked").each(function(){ //遍历后把值放到数组中,这样type数组就是当前复选框选中的所有数据 3 type.push($(this).val()); 4 });