Javascript仅适用于页面刷新后的ip,刷新前使用dns访问有效
我正在努力解决一个奇怪的问题。 当通过 dns 使用网页时,我的所有 document.ready 功能都可以正常工作。 切换到 IP 时,该功能会中断,但在页面刷新后开始工作。
以前有人遇到过这种现象吗?
我知道这很含糊,并事先道歉。 感谢您的帮助!
更新: 脚本已被验证在功能不起作用时加载
I'm struggling with a weird problem.
All my document.ready functionality is working when using the web page by dns.
When switching to IP the functionality breaks, but starts working after a page refresh.
Have anyone encountered this phenomenon before?
I know this is vague and apologize beforehand.
Thanks for any help!
Update:
Script has been verified to be loaded at the time when functionality doesn't work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据你模糊的问题,我能想到的唯一可能的想法是,你拥有的一些Javascript现在被IP地址
http://127.0.0.1/scripts
引用,并且脚本目录只是可通过名为http://hostname/scripts
的 DNS 获取。Based on your vague question, the only POSSIBLE idea I can come up with is that some Javascript you have is now being referenced by IP address
http://127.0.0.1/scripts
and the scripts directory is only available via the DNS namedhttp://hostname/scripts
.