欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

我是php小白 复制拷贝下面代码的文件为啥提示该动作不存在 ?

程序员文章站 2022-06-09 22:57:00
...
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} {/userfavorite}
缩略图 产品名称 单价 加入购物车 取消收藏
我是php小白   复制拷贝下面代码的文件为啥提示该动作不存在 ? {$item.goodsInfo.name} {$item.goodsInfo.priceNow}

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"}

相关标签: php