下面的代码不会将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>
答案 0 :(得分:4)
您的div的ID为#content
,将其更改为content
。 (仅在html中,jQuery选择器中 NOT )
答案 1 :(得分:2)
更改
<div id="#content">
</div>
到
<div id="content">
</div>