Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上我在做搜索。并且此搜索发生输入字段的模糊事件。搜索的所有结果都是通过 XML 从 php 页面检索的,有一个弹出窗口,我通过 URL 接收到值,但由于数组的大小很大我们无法将此系统访问到任何其他系统的 URL。所以请告诉我如何在不使用 Ajax 的 URL 的情况下将值发送到 php 弹出窗口,现在我正在使用此函数通过 url 将值从 Ajax 发送到 php ,,,任何人都给我适当的解决方案。对于不使用 url。
要么你可以打电话
$.post({...});
或更好
$.ajax({ type: 'POST', ... });
这样,数据通过 HTTP 的 POST 方法发送,并且不存在于 URL 中。