我正在尝试将发布数据发送到postinfo.php
使用 jQuery 调用的发布数据文件处理程序,但到目前为止我可以做到。
这是我的 post.php 代码:
<HTML>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<script type="text/javscript">
$('#form_id').on('submit', function(e){
e.preventDefault();
$.ajax({
type: "POST",
url: "http://www.vemvo.com/test/postinfo.php",
data: $(this).serialize(),
success: function() {
alert('success');
}
});
});
</script>
<form method="post" id="form_id">
<input type="text" name="ime">
<input type="submit" id="submit" name="submit" value="Send">
</form>
您可以在此处查看该页面:http ://www.vemvo.com/test/post.php
这是我的 postinfo.php 中的代码:
<?PHP
$ime = $_POST['ime'];
echo "Your name is $ime";
?>
这里位于 postinfo.php - http://www.vemvo.com/test/postinfo.php
那么我的错误在哪里以及如何使它起作用?现在它没有发送数据,也没有给我成功警报。