gpt4 book ai didi

jquery - 通过 getJSON 将 get 变量发送到 php 文件?

转载 作者:行者123 更新时间:2023-12-01 06:20:35 25 4
gpt4 key购买 nike

是否可以使用 getJSON 将参数(例如 get 变量)发送到 php 文件,如果可以,该怎么做?

下面的代码不起作用,但希望它能展示我试图完成的任务。

var url = "http://www.address.com/"

$.getJSON('http://anotheraddress.com/messages.php?url=+escape(url))', function(data) {
// code here
});

最佳答案

$.getJSON接受另一个数据参数:

var url = "http://www.address.com/"

$.getJSON('http://anotheraddress.com/messages.php', { url: escape(url) }, function(data) {
// code here
});

关于jquery - 通过 getJSON 将 get 变量发送到 php 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8682022/

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