
ajax
文章平均质量分 62
nono4909
这个作者很懒,什么都没留下…
展开
-
ajax 与后台交互后返回相应的字符串
前台 $.ajax({ type: "post", url: "", data: {items: selectedItems.join(',')}, async:false, success: function(date){ if(date==0){ alert("选中的数据中存在已经上报的数据"); }原创 2013-07-04 15:50:24 · 2171 阅读 · 0 评论 -
ajax选中的复选框转数组传到后台
var selectedItems = new Array(); $(':input[class=ids][checked]').each(function() { selectedItems.push($(this).val()); }); $.ajax({ type: "post", url: "", data: {items: s原创 2013-07-04 15:47:51 · 1879 阅读 · 0 评论