js调用出错,firebug的控制台一直加载js文件? 400 报错
按钮的代码:
<a id="delSub" class="5i5j-toolbarbutton ajaxbutton" plain="true" icon="toolbar-icon-delete" onClick="CrmProject.batchDeleteProjectemployee('tt','crmProject.batchDelEmployee.b5','${crmProjectId}')">删除</a>
执行的方法:
batchDeleteProjectemployee:function(tableId,url,crmProjectId){ var rows = $("#"+tableId).datagrid('getSelections'); var temp = ""; if(rows.length == 0 || rows==""){ $.messager.alert('警告','请选择要删除的员工!','warning'); return; } for(var i=0;i<rows.length;i++){ temp += "empIds="+rows[i].empId+"&"; } url += "?id="+crmProjectId; Common.batchDelete(tableId,temp,url); }
另一个js中的方法
//批量删除 batchDelete:function(tableId,bystring,url){ if(bystring.length == 0 || bystring==""){ $.messager.alert('警告','请选择要删除的数据项!','warning'); return; } $.messager.confirm('确认批量删除', '确定要删除已经选择的记录吗?', function(r){ if (r){ //大家的操作可以放在这里 $.ajax({url:url,data:bystring,dataType:"json",async: false,type:"POST",beforeSend : function(){ Utils.showProcessingMessage($(document.body)); }, success:function(json){ Utils.hideProcessingMessage(); if(json.status == "0"){ Utils.autoHideMessage($(document.body),"批量删除数据失败,请重试!"); }else if(json.status == "1"){ }else if(json.status == 2){ $.messager.alert('警告','您没有访问此功能的权限,请与管理员联系!','warning'); } Common.reload(tableId); }, error:function(html){ Utils.hideProcessingMessage(); $.messager.alert('错误','批量删除数据失败,请重试!','error'); }}); } });
这是涉及到的代码,点击删除的按钮后首先没有任何反应,而是出现下面的界面。然后是js的调用,请问这是什么原因?
问题已经解决,是按钮的问题,将class="5i5j-toolbarbuttonajaxbutton"改为class="5i5j-toolbarbutton",搞定,感谢大家的关注。只是小弟不才,不知道为什么会是这个原因,望各位大侠多多赐教
######介绍一个可以学习JQueryUI、JQueryLiger、DWZ、JQueryEasyUI的网站
前端技术交流论坛
www.jqueryuibbs.com包含了上述技术
web流程设计器1下载
http://www.jqueryuibbs.com/thread-126-1-1.html
web流程设计器2下载
http://www.jqueryuibbs.com/thread-129-1-1.html
easy-ui皮肤切换功能
http://www.jqueryuibbs.com/thread-124-1-1.html
easy-ui仓库管理系统
http://www.jqueryuibbs.com/forum.php?
mod=viewthread&tid=143&extra=
ligerUI布局实例
http://www.jqueryuibbs.com/thread-14-1-1.html
dwz局部表格分页
http://www.jqueryuibbs.com/thread-45-1-1.html
实用OA系统左侧DIV+CSS菜单源码(漂亮OA界面菜单源码下载)
http://www.jqueryuibbs.com/thread-194-1-1.html
绿色的Flash翻书特效(有声音)
http://www.jqueryuibbs.com/forum.php?
mod=viewthread&tid=216&page=1&extra=#pid365
WEB开发者应该收藏的工具网站
http://www.jqueryuibbs.com/thread-218-1-
1.html
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。