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.
我需要在提交按钮单击时运行 php 脚本(站点爬虫),而无需重新加载页面。后台脚本运行后,应出现确认/警报弹出窗口,表明站点爬虫已结束。请问有什么想法吗?
基本上这个想法是这样的:
为了简化与服务器的交互,您可能想要使用一些XHR 库。除非您实际上已经将它用于其他用途,否则我会避免建议避免使用 jquery。
至于“如何知道后台脚本何时完成”:我认为最好的方法是让该脚本创建一个文件,其中包含
Jquery + AJAX 可以让你的工作更轻松。阅读本教程以了解如何实现结果:
AJAX+ jQuery 教程