引用文件包含错误(http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd)

时间:2015-12-22 04:49:20

标签: hibernate

<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项目)中获得错误。

0 个答案:

没有答案