并且在servlet页面进行查询,查询的结果传递到新的页面中
$("a").click(function () {var content=$(this).text();$.get("你的服务器地址.jsp?v=" + content, function(result){$("某个div").html(result);});});
你的服务器上用request.getParameter("v") 可以获取