我正在尝试做一个简单的 AJAX 函数来从查询字符串发送数据,并附加 DIV。.我尝试了各种不同的方法,但没有一个会更新 div。如果它更新,它返回 NULL,否则它只是转到 request.php 页面。如果我在点击事件下移动阻止默认功能,它什么也不做。任何帮助,将不胜感激!!TIA
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(function()
{
$("#link").click(function(e)
{
$.ajax(
{
type : "GET",
url : "request.php",
data : { id: link.attr('id') },
success : function(response)
{
$("#ajaxresponse div").fadeOut("fast", function()
{
$("#ajaxresponse div").remove();
$("#ajaxresponse").append($(response).hide().fadeIn());
});
}
});
e.preventDefault();
});
});
</script>
</head><body>
<h1>
AJAX with PHP
</h1>
<div class="content">
<a href="request.php?id=1" id="link" data-id="1" >Submit Link</a>
</div>
<div id="ajaxresponse">
<div>please submit the form</div>
</div>
request.php 如下:
<?php
$username = $_GET['id'];
echo getTemplate($username);
function getTemplate($username)
{
return '<div class="box">
<h1>The ID is</h1>
<div class="meta">username: '.$username.'</div>
</div>';
}
?>