0

这里有什么问题?问题在标题中?我是这方面的新手。任何帮助表示赞赏...

<map name="ddd">
 <area shape="circle" coords="90,58,3" alt="xxx" href="#" onclick="AjaxGet('$row['id']','$row['firstname']','$row['surname']');">
</map>
4

1 回答 1

0

我假设你在这里使用 php。您必须在 html 中按如下方式引用您的对象。

<map name="ddd">
 <area shape="circle" coords="90,58,3" alt="xxx" href="#" onclick="AjaxGet('<?php  $row['id']?>','<? $row['firstname'] ?>','<?php $row['surname']?>');">
</map>

另外我会推荐以下内容:使用对象来读取您的数据,而不是直接从数据库中将它们显示在您的页面上。

而不是使用 onclick 使用jquery click 功能来做你的绑定

于 2013-09-21T12:57:17.863 回答