Javascript 可以知道你的 IP 吗?

发布于 2024-11-24 14:11:51 字数 330 浏览 0 评论 0原文

可能的重复:
仅使用 Javascript 获取客户端 IP?

我知道 PhP 可以从 <代码>

JavaScript 如何做到这一点?

还是说因为javascript是客户端所以它不知道计算机的IP?

Possible Duplicate:
Get Client IP using just Javascript?

I know PhP can know your IP from <?php echo $_SERVER['REMOTE_ADDR']; ?>

How can javascript do so?

Or is it true that because javascript is client side it doesn't know the IP of the computer?

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

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

发布评论

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

评论(4

欲拥i 2024-12-01 14:11:51

如果包含 JS 代码的文件是由 PHP 解析的,那么您应该能够通过 PHP 将 IP 地址注入到 JS 代码中。

<script type="text/javascript">
 var ipaddress = "<?php echo $_SERVER['REMOTE_ADDR']; ?>";
</script>

If the file containing your JS code is parsed by PHP, you should be able to inject the IP-address into the JS code by PHP.

<script type="text/javascript">
 var ipaddress = "<?php echo $_SERVER['REMOTE_ADDR']; ?>";
</script>
后eg是否自 2024-12-01 14:11:51

JavaScript 在您的浏览器中执行,它无法知道您的 IP。
但是你可以通过AJAX从后端获取IP

JavaScript is executed in your browser, it can't know your IP.
But you can get IP from back-end with AJAX

怪我太投入 2024-12-01 14:11:51

这是正确的。如果不连接到另一台服务器,则无法确认您的公共 IP,因此它不能直接在客户端 JavaScript 中使用。

That's correct. There's no way to confirm your public IP without connecting to another server, so it's not directly available in client-side JavaScript.

昔梦 2024-12-01 14:11:51

您可以使用 HTTP 请求来调用提供 IP 的现有 API。例如,domaintools.com 上有 XML API,但应该有访问起来更加简单的 API。

You can use an HTTP request to call an existing API which provides the IP. For example there is the XML API at domaintools.com, but there should be much more simpler APIs to access.

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