嘿伙计们,我正在尝试接收以下内容
function sendUserfNotes() {
$.ajax({
type: "GET",
url: '/pcg/popups/grabnotes.php',
data: {
'nameNotes': notes_name.text(),
},
success: function () {
alert(notes_name.text());
}
});
}
在接收者端,我有以下内容:
<?php
$test = $_GET['nameNotes'];
echo $test;
?>
不过这里什么也没有发生。它通过但我无法获得发送的 GET 值?我不知道 JQuery UI 对话框是否打开了它正在发送的位置。需要帮助。