gpt4 book ai didi

javascript - 使用 url 将 Javascript 变量传递到 PHP 页面

转载 作者:行者123 更新时间:2023-12-02 17:30:30 25 4
gpt4 key购买 nike

我有一个 JavaScript 函数,可以加载 PHP 页面并向其传递一个变量(testvar)

function selectcity()
{

var testvar = "test text";
$("#list").load("selectcity.php?testvar");
$.ajaxSetup({ cache: false });

}

现在在 selectcity.php 页面中,我尝试检索如下变量:但不起作用,请有人帮忙。

<?php
echo $_GET['testvar'];
?>

最佳答案

您没有设置值,只设置了 URL 中的变量名称。

更改为:

$("#list").load("selectcity.php?testvar=" + encodeURIComponent(testvar));

关于javascript - 使用 url 将 Javascript 变量传递到 PHP 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23111930/

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