|
楼主 |
发表于 2012-10-14 17:38:35
|
显示全部楼层
测试结果不行。
我的managerlog.js文件内容部分如下:
//del event
$(".del").bind("click",function(event){
var _tmpQuery=$(this);
var id=$("input[name='id']",$(this).parents("form:first")).attr("value");
art.dialog.confirm('你确认删除该日志吗?',function(){
$.post("manager/del_managerlog",{id:id},function(tips){ //这一行,post地址问题
if(tips=='ok'){
art.dialog.tips('成功删除');
$(_tmpQuery.parents('tr:first')).hide();
}else{
art.dialog.tips(tips,5);
}
});
return true;
});
});
在视图中触发这个js,没反应。 |
|