<script>
$(document).ready(function() {
$(".link").on("click", function(e) {
e.preventDefault();
var id = $(this).data("id");
console.log (id); // i am getting value in this id
$.ajax({
type : "post",
url : "register.php",
data : "id="+id, //you can pass value like this.
cache : false,
success : function(html) {
$('#msg').html(html);
}
});
});
});
</script>
我在hibernate配置的第一行和Web应用程序(Dynamic Web Project)中的映射文件中遇到错误。我没有在独立应用程序(java项目)中获得错误。