我不熟悉 jQuery,搜索给我的答案与我所寻找的完全不同。
我正在使用 ajax 从从数据库加载的 PHP 脚本加载数据。我想加载新数据而不是加载已经显示的旧数据。我想出了使用要从中提取数据的表中的最高索引值来执行此操作的想法,这很容易。用 PHP 做这件事没问题,但让一个循环继续下去是困难的部分。
我的 PHP 脚本输出粘贴在接收页面中的 HTML。我需要该页面从我的页面接收一个变量,以便在下一个请求时它可以提交最高索引值以防止重复。现在这就是问题所在。
jQuery AJAX 接收数据类型“HTML”。如何将变量与 HTML 一起传递,以便可以更新脚本。
程序工作原理总结:
-Page.php sends an ajax(GET) request to script.php with a few variables
-Script.php receives the request and processes the variables
-Script.php finishes processing and outputs HTML
-(I want script.php to send variables to page.php that can be identified separately from the HTML)
-Page.php receives HTML and appends it
-(I want those variables to be added to the Jquery variables so they can be sent on next request)
现在如何做到这一点是个问题。我对jQuery不太熟悉,所以我不确定它是否可以正常完成。