活动脚本在 ie 上已启用,但我的 javascript 未显示
我有一个使用 .net 和 ajaxcontroltoolkit 创建的网站。当某些用户登录时,他们看不到页面上的控件。如果我在 ie 中禁用活动脚本,我可以复制此内容。问题是与我交谈过的用户启用了活动脚本。我让他们导航到一个测试 javascript 的网站并且它通过了。有人遇到过这个问题吗?如果是这样,你的解决方案是什么?有谁知道什么会导致这种行为?
I have a site created using .net and the ajaxcontroltoolkit. When some users log on they do not see the controls on the page. I can duplicate this if I disable active scripting in ie. The problem is that the users I have spoken with have active scripting enabled. I have had them navigate to a site that tests javascript and it passes. Has anyone experienced this problem? If so what was your solution? Does anyone know what would cause this sort of behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试以下操作:
在其中一个页面中添加
noscript
标记,这将确认此行为是否是由于禁用活动脚本或其他原因造成的。<代码><无脚本>;活动脚本已禁用
IE 有 4 个不同的安全区域(互联网、本地 Intranet、受信任站点和受限站点)。确保您的站点位于启用了活动脚本的站点内。
You may try the following:
Add a
noscript
tag in one of your pages, this will confirm if this behavior is due to disabled active scripting or somthing else.<noscript> Active Scripting Disabled </noscript>
I.E have 4 different security zones (Internet, Local Intranet, Trusted sites and Restricted sites). Make sure your site exists inside one with active scripting enabled.