脚本代码 求翻译!!在线等!!
functionaction(com,grid){switch(com){case'添加联系人':actions='../addLxr/addLxr.action';$(...
function action(com, grid) {
switch (com) {
case '添加联系人':
actions='../addLxr/addLxr.action';
$("#saveLxr input[type='text']").each(function(){ $(this).val("");});
$("#lxr").jqmShow();
break;
case '删除联系人':
selected_count = $('.trSelected', grid).length;
if (selected_count == 0) {
alert('请选择一个联系人!');
return;
}
names = '';
$('.trSelected td:nth-child(3) div', grid).each(function(i) {
if (i)
names += ',';
names += $(this).text();
});
ids = '';
$('.trSelected td:nth-child(2) div', grid).each(function(i) {
if (i)
ids += ',';
ids += $(this).text();
})
if (confirm("确定删除联系人[" + names + "]?")) {
delLxr(ids);
}
break;
}
}
function delLxr(ids) {
$.ajax( {
url : '../addLxr/delLxrAction.action',
data : {
idList : ids
},
type : 'POST',
dataType : 'json',
success : function() {
$('#flex').flexReload
}
});
}
$('#submit').click(function(){
fromVelidate();
var formjson=getFormData();
$.ajax({
url : '../addLxr/addLxrAction.action',
data :{formJson:formjson},
type : 'POST',
dataType : 'json',
success : function(data) {
$('#lxr').jqmHide();
$('#flex').flexReload();
}
});
});
帮我注释下就好 谢谢大家了!!! 展开
switch (com) {
case '添加联系人':
actions='../addLxr/addLxr.action';
$("#saveLxr input[type='text']").each(function(){ $(this).val("");});
$("#lxr").jqmShow();
break;
case '删除联系人':
selected_count = $('.trSelected', grid).length;
if (selected_count == 0) {
alert('请选择一个联系人!');
return;
}
names = '';
$('.trSelected td:nth-child(3) div', grid).each(function(i) {
if (i)
names += ',';
names += $(this).text();
});
ids = '';
$('.trSelected td:nth-child(2) div', grid).each(function(i) {
if (i)
ids += ',';
ids += $(this).text();
})
if (confirm("确定删除联系人[" + names + "]?")) {
delLxr(ids);
}
break;
}
}
function delLxr(ids) {
$.ajax( {
url : '../addLxr/delLxrAction.action',
data : {
idList : ids
},
type : 'POST',
dataType : 'json',
success : function() {
$('#flex').flexReload
}
});
}
$('#submit').click(function(){
fromVelidate();
var formjson=getFormData();
$.ajax({
url : '../addLxr/addLxrAction.action',
data :{formJson:formjson},
type : 'POST',
dataType : 'json',
success : function(data) {
$('#lxr').jqmHide();
$('#flex').flexReload();
}
});
});
帮我注释下就好 谢谢大家了!!! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询