我希望使用ajax增强锚标记的默认功能,以便我尝试发布/获取或请求来自指定锚标记的id的数据(参见下文)
我的锚标记中的代码
<a href="processor.php" class="ajaxanchor" id="2">My Title</a>
和我使用的脚本
$('a.ajaxanchor').click(function() {
var location = $(this).attr('href');
// use jQuery's $.post, to send the request
// the second argument is the request data
$.post(location, {jkey: "post", post_id: this.id}, function(data) {
// data is what your server returns
});
// prevent the link's default behavior
return false;
});
但似乎根本没有工作,任何人可以建议,推荐或可以提出如何使这项工作的想法吗?提前谢谢。