我正在使用jQuery的.ajax()发布到名为process.php的PHP文件中。 Process.php中有很多代码,但为简单起见,我们只说它包含<?php echo 'hello'; ?>
。
这是将process.php的结果插入div.results
的正确jQuery吗? :
$.get('process.php', function(data) {
$('.results').html(data);
});
到目前为止它似乎没有起作用。
这是HTML / Javascript文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("form#form").submit(function() {
var username = $('#username').attr('value');
$.ajax({
type: 'POST',
url: 'process.php',
data: 'username=' + username,
success: function() {
$('form#form').hide(function() {
$.get('process.php', function(data) {
$('.results').html(data);
});
});
}
});
return false;
});
});
</script>
</head>
<body id="body">
<form id="form" method="post">
<p>Your username: <input type="text" value="" name="username" id="username" /></p>
<input type="submit" id="submit" value="Submit" />
</form>
<div class="results"></div>
</body>
</html>
这是process.php
(大大简化):
<?php
/* get info from ajax post */
$username = htmlspecialchars(trim($_POST['username']));
echo $username;
?>
答案 0 :(得分:5)
如果您只想将结果字符串放回元素中,请使用load()
。
$('.results').load('process.php');
但是,看看你的代码......
$.ajax({
type: 'POST',
url: 'process.php',
data: 'username=' + username,
success: function() {
$('form#form').hide(function() {
$.get('process.php', function(data) {
$('.results').html(data);
});
});
}
});
...表明你误解了一些东西。分配给success
回调的正确匿名函数将是......
function(data) {
$('form#form').hide()
$('.results').html(data);
}
答案 1 :(得分:0)
你可以尝试这样的事情。
function ajax_login() {
if ($("#username").val()) {
$.post("/process.php", { username : $("#username").val() }, function(data) {
if (data.length) {
$("#login_form").hide();
$("#login_result").html(data);
}
})
} else {
$("#login_result").hide();
}
然后在process.php中,如果帖子成功,则回显一些文本。
process.php =&gt;
if (isset($_POST['username'])
{
echo 'hello '.$_POST['username'];
}