我对 jQuery 和 PHP 有疑问……所以这是我的 jQuery 代码:
var rino = "Renaro";
$(document).ready(function() {
$.post('form.php', { test: rino } );
});
这里是 PHP
echo $_POST['test'];
从文档中我了解到,在 jQuery 之后应该rino
为 $_POST['test']
.. 赋值,但它不会回显的值 .. 并给出 PHP 错误PHP Notice: Undefined index: test
我究竟做错了什么?
这是文件的完整代码
<html>
<head>
<script type="text/javascript" src="jquery.js" ></script>
<script type="text/javascript">
var rino = "Renaro";
$(document).ready(function() {
$.post('form.php', { "test" : "rino" } );
});
</script>
</head>
<body>
<div id="content">
<?php echo $_POST['test']; ?>
</div>
</body>
</html>