js调用出错,firebug的控制台一直加载js文件

发布于 2021-11-05 02:53:56 字数 1950 浏览 717 评论 2

按钮的代码:

<a href="#" 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的调用,请问这是什么原因?

 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

输什么也不输骨气 2021-11-05 17:33:49

介绍一个可以学习JQuery UI、JQuery Liger 、DWZ、JQuery EasyUI的网站
前端技术交流论坛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

如日中天 2021-11-05 13:08:53

问题已经解决,是按钮的问题,将class="5i5j-toolbarbutton ajaxbutton"改为class="5i5j-toolbarbutton",搞定,感谢大家的关注。只是小弟不才,不知道为什么会是这个原因,望各位大侠多多赐教

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文