我似乎无法将数据发送到我点击的链接。我得到的只是我的 php 文件中未定义的索引。
<a href="output.php"> Click me </a>
('a').click(function(){
href = "output.php";
$.post( 'output.php', { output: "hello"},
function( data ) {
window.location = href;
}
);
return false;
});
ajax 成功发送,但页面重定向到 output.php 页面,错误提示索引“输出”不存在。
<?php
$content = $_POST['output'];
echo $content;
?>
帮助任何人?这太令人困惑了。