好的,所以我有一个用 JS 创建的链接:
var content = document.getElementById("Profile");
var entry = document.createElement('li');
entry.innerHTML= ' <a href="eventList2.html" onclick ="post()"> Click Me </a>';
content.appendChild(entry);
function post(){
$.post( "random.php", { variable: "hello"} );
}
在我的 PHP 中:
随机文件
<?php
Header("content-type: application/x-javascript");
error_reporting(E_ERROR | E_WARNING | E_PARSE);
$variable = $_POST['variable'];
echo"alert($variable);";
?>
回显“未定义”而不是“你好”。谁能告诉我我做错了什么?我对 AJAX 和 Jquery 不太熟悉,我只是按照我在教程和示例中看到的内容进行操作。谢谢