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 检查某个 javascript(如果您知道要查找的脚本类型)是否在使用 PHP 的 url 上处于活动状态?如果是这样怎么办?
您可以在不执行该功能的情况下检查该功能是否在页面上。
if (functionName) { // this function exists on this page // feel free to call it functionName(); }
注意:这仅适用于具有名称的函数。