gpt4 book ai didi

php - 使用 jquery.post 单向发送一个帖子

转载 作者:行者123 更新时间:2023-11-30 07:43:40 24 4
gpt4 key购买 nike

我有一个我们将称为 test_string 的变量,我也将字符串“hello”分配给它。

var test_string = "hello";

我希望它单向发布到 php 页面我试过:

$.post('php_page.php', test_string);

在我使用的 php_page.php 上:

$new_var = $_POST['test_string'];
echo $new_var;

没有结果。我在 $.post() 中缺少什么?

最佳答案

试试这个---

$.post('php_page.php', {test_string:test_string});

让我知道

编辑我的工作代码 ---

test.php


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
function handle(){
var test_string = "hello";
$.post('myphp.php', {'test_string':test_string},
function (result){
$("span").html(result);
});
}
</script>

</head>

<body>

<input type="button" onclick="handle();" value="Click" />
<span></span>

</body>
</html>

myphp.php

<?php
$new_var = $_POST['test_string'];
echo $new_var;

关于php - 使用 jquery.post 单向发送一个帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11406124/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com