如果客户端禁用js,服务器端的javascript还会运行吗?
如果客户端浏览器中禁用了 javascript,服务器端 javascript 还会运行吗?
If javascript is disabled in a client browser, will the server side javascript still run?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
执行服务器端代码(无论是 JS 还是任何其他语言)并将其输出发送到客户端。
然后,如果该输出中有任何 JS,并且该客户端支持 JS 并且没有禁用或以其他方式阻止它,那么它将由客户端执行。
Yes.
Server side code (whether in JS or any other language) is executed and the output it sent to the client.
Then, if there is any JS in that output, it will be executed by the client if that client supports JS and doesn't have it disabled or otherwise blocked.
服务器端的东西是在服务器上运行的。客户端设置不会影响它。
Server-side stuff is run on the server. The clients settings do not affect it.