将 Jquery 变量传递给 php 时出现问题。
当我将变量 id 传递给B.php
我收到此错误
"Notice: Undefined index: id1 in C:\xampp \htdocs\PhpProject1\OtherUsableItems\B.php on line 2
如何解决这个问题呢 ????这A.php
<html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
var id = 23;
$("#submit").click(function(){
$.post("B.php",
{
id1: id,
} );
});
});
</script>
</head>
<body>
<form action="B.php" method="post" >
<input type="submit" id="submit" name="submit"/>
</form>
</body>
</html>
这B.php
<?php
$a =$_POST['id1'];
echo $a ;
?>
我希望 id 变量传递给B.php