如何通过代理重新加载框架?

发布于 2024-12-03 09:11:42 字数 283 浏览 1 评论 0原文

我正在尝试创建一个简单的框架页面,该页面每 x 秒和每个帧重新加载一次,每次重新加载时,它都必须使用我拥有的列表中的不同代理。 该列表的格式如下: IP:端口 有什么想法或解决方案吗? 实际上我正在使用的是一个带有元刷新的简单解决方案。

但我真的不知道如何集成列表......也许是 php 或 javascript?

...我忘了说...我几乎是 Js 和类似的新手:-) 所以请善待我!

I'm trying to create a simple framed page that reloads each x seconds and each frame and each time it reloads it has to use a different proxy from a list that I have.
The list is formatted like this:
IP:PORT
Any idea or solution?
Actually what I'm using is a simple solution with meta refresh.

<meta http-equiv="refresh" content="600">

but I don't really know how to integrate the list...maybe php or javascript?

... I Forgot to say.... I'm almost a newbie in Js and stuff like this :-) So please be kind with me!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怪我入戏太深 2024-12-10 09:11:42

您需要将代理数组放入 Javascript 数组中,并执行 window.location 而不是刷新(因为您想要更改主机)。使用setTimeout()你可以让它定期运行。

You need to put the array of proxies in a Javascript array, and do a window.location instead of a refresh (since you want to change the host). Using setTimeout() you can make it run periodically.

影子的影子 2024-12-10 09:11:42

如果通过代理,您的意思是从实际的代理服务器加载,那么这是不可能的。您必须重新配置浏览器才能使其工作,并且出于明显的安全原因,这在网页上是不可能的。

不过,您可以按照 Rijk 的建议,使用基于网络的代理(因为它毕竟只是另一个页面)。

If by proxy, you mean load from an actual proxy server, than this isn't possible. You would have to reconfigure the browser for this to work, and for obvious security reasons, this isn't possible from a web page.

You can however use web-based proxies (as it is just another page after all), using Rijk's suggestion.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文