JQuery .load()函数不起作用

时间:2014-11-16 10:05:35

标签: javascript jquery

下面的代码不会将html页面的内容加载到div,只显示警告。你能告诉它有什么问题吗?

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script type="text/javascript" src="jquery-2.1.1.min.js">
</script>

<script >
$( document ).ready(function() {

            $( "a" ).click(function( event ) {
                alert( "The link will no longer take you to jquery.com" );
                $( "#content" ).load( "registration.html" );
                event.preventDefault();
            });
        });
</script>
</head>

<body>
<a href="#">JQUERY</a>
<div id="#content">

</div>
</body>
</html>

2 个答案:

答案 0 :(得分:4)

您的div的ID为#content,将其更改为content。 (仅在html中,jQuery选择器中 NOT

答案 1 :(得分:2)

更改

<div id="#content">
</div>

<div id="content">
</div>