我有一个包含一些数据的链接
例如
<li><a href="" onclick="getcategory(this);"><?php echo $result22['category']; ?></a></li>
我希望这个链接将此$result22['category'];
值传递给 ajax 函数我正在尝试这个
<script type="text/javascript">
function getcategory(cat)
{
var id = cat.value;
alert("hi" + id);
}
</script>
但它在警报框中显示 hi undefined
做错了什么?$result22['category'];
在警告框中没有得到正确的值