-3

即使用户在浏览器中禁用了 JavaScript,有没有一种方法可以运行 JavaScript?

如果没有,有哪些备用方案可用?

4

1 回答 1

1

没有。如果已在浏览器中禁用 JavaScript,则无法运行 JavaScript。您无法以编程方式重新打开它。

作为后备方案,您始终可以使用<noscript>标签来告诉用户打开 JavaScript。例如:

<noscript>
    You can browse this site without having JavaScript enabled,
    but to experience the full benefits of the site, please enable JavaScript.
</noscript>
于 2012-08-10T03:10:02.420 回答