我是php小白复制拷贝下面代码的文件为啥提示该动作不存在?
时间:2021-07-01 10:21:17
帮助过:6人阅读
php
我是php小白 问一个问题 复制拷贝下面代码的文件为啥提示该动作不存在 网站用的smarty模板分离..
{seopage id=18}
{include "header.inc.html"}
{include "user/header.inc.html"}
{include "user/side.inc.html"}
我的收藏夹
缩略图 | 产品名称 | 单价 | 加入购物车 | 取消收藏 |
{userfavorite userId=$smarty.session.userId} | {$item.goodsInfo.name} | {$item.goodsInfo.priceNow} | | |
{/userfavorite}
function delFavorite(fid){ if(!fid || isNaN(parseInt(fid))){ return false; } //if(!confirm("确定删除该收藏吗?")){ return false; } $.ajax({ type:"POST", url:"{$baseUrl}user/favorite/", data:"inajax=1&act=del&id="+fid, dataType:"json", cache:false, success:function(data){ G.ui.popup.showMsg(data.message,{ type:data.type }); if(data.success){ $("#fav"+fid).hide("slow").remove(); } } });}{include "footer.inc.html"}