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.
我正在学习 Jquery,并且有一个网站调用酒店信息。
我正在使用 ajax 作为回调,但我想知道是否有人可以向我展示一些关于如何根据用户输入使回调动态化的代码或教程。
用户输入动态数据,如到达和离开日期,构建检索所需的回调字符串
谢谢
不确定“回调”是否是您要查找的词,但您可以将数据与data属性中的 AJAX 调用一起传递(它接受键/值对)。考虑:
data
<input type="text" id="arrival" /> <input type="text" id="depart" /> $.ajax({ url: someUrl, data: {arrival: $("#arrival").val(), departure: $("depart").val() } .. .. });