如何使用 ajax 将 URL 字符串发送到结构体方法

发布于 2024-11-26 14:19:52 字数 207 浏览 0 评论 0原文

我有一个字符串,基本上是一个 URL“http://www.demopage.com/sid=23&pop=wsa&jingle=yu

现在我想使用 agax 请求将此 url 发送到服务器。我该怎么做.?只需将其作为字符串发送并在服务器端解析它。创建并从中创建对象。将对象作为ajax结果传输回,然后将该对象保存在某个输入字段值中。这可能吗..我知道我在说疯话。 。

I have a string which is basically a URL "http://www.demopage.com/sid=23&pop=wsa&jingle=yu

Now i want to send this url to the server using agax request. How can i do it.? Just send it as string and on the server side parse it.Create and object from it.Transfer the object back as ajax result and then save this object in some input field value.Is this possible..I know m talking crazy..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情定在深秋 2024-12-03 14:19:52

您不必作为对象发送。只需使用您拥有的网址

$.ajax({url: 'ajax/test.html',
          success: function(data) {
             alert(data)  //data will be whatever you print or echo in your php file server side
            }
});

http://api.jquery.com/jQuery.ajax/

You do not have to send as object. just send it with the url you have

$.ajax({url: 'ajax/test.html',
          success: function(data) {
             alert(data)  //data will be whatever you print or echo in your php file server side
            }
});

http://api.jquery.com/jQuery.ajax/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文