ajax问题

2016-07-07 15:04 来源:www.chinab4c.com 作者:ecshop专家

我想在首页移过图片.显示一个层,显示商品详细信息.
onmousemove="showgood({$goods.id})


function showgood(id)
{
Ajax.call('index.php', 'act=show_good&goodid='+id,getshowgood, 'GET', 'JSON');
}
//弹出商品ID
function getshowgood(res)
{
alert(res.id);
}


if($act=='show_good')
{
include('includes/cls_json.php');
$json= new JSON;
$res = array('img' => '', 'sys' => '', 'id' => '');
$uc_goodid=!empty($_GET['goodid']) ? $_GET['goodid'] : 0;
$res['id']=$uc_goodid;
die($json->encode($res));
}
当我移过图片的时候会弹出会多个对话框,个数不固定.请问我哪里写错了?

回答:
这个没有任何问题。你查看其他地方

不可以断点.好累