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.
我有这个示例代码:
<img src="e.php"/> <link href="e.php" rel="stylesheet"/> <script src="e.php"></script>
有没有办法知道e.php是否加载到窗口上,或者是否被那些文档元素调用?
如果您的请求是“友好的” - 即您可以信任它 - 只需从 DOM 内部传递一个参数:
<img src="e.php?query=DOM"/>
否则,如果您不能相信这一点(即参数将被更改) - 无法确定查询的类型 - 它可以是“正常”,从元素查询,甚至通过cURL调用(通常情况下,cURL 是第三方库)