Home >Backend Development >PHP Tutorial >javascript - 服务端怎么判断浏览器不支持js或者禁止js?

javascript - 服务端怎么判断浏览器不支持js或者禁止js?

WBOY
WBOYOriginal
2016-06-06 20:20:251241browse

服务端怎么判断浏览器不支持js或者禁止js,,php和java等语言的判断机制是怎么样的?可否又浏览器发送数据告诉服务器是禁止js的?

回复内容:

服务端怎么判断浏览器不支持js或者禁止js,,php和java等语言的判断机制是怎么样的?可否又浏览器发送数据告诉服务器是禁止js的?

服务端不行的
客户端可以试一试~~~

<code><noscript>
    <meta http-equiv="refresh" content="0.2;url=http://www.sina.com.cn?noscript">
</noscript></code>

服务器端好像不好直接判断,但是用noscript是可以实现需求的。
如果无js要跳转的话,noscript套meta就行了。

<code class="html"><noscirpt></noscirpt></code>

html noscirpt

写个ajax往服务器传类似 'supportJs' 的str,如果没收到那就说明客户端不支持了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn