内容简介:如果没有启用javascript,我想定义.exampleclass img {height:250px}.无论如何他们在javascript / jquery中撤消这个?翻译自:https://stackoverflow.com/questions/4665748/define-css-if-javascript-is-not-enabled
如果没有启用javascript,我想定义.exampleclass img {height:250px}.无论如何他们在javascript / jquery中撤消这个?
你可以使用HTML的noscript标签.
<noscript> <style type="text/css"> .exampleclass img {height:250px} </style> </noscript>
编辑:我实际上将斯蒂芬的回答视为最好的.虽然上述方法可能有效,但可能无效/遵循最佳做法.
斯蒂芬回答:
put a “no-js” class on your body element, and then remove it with JS at load, and use .no-js in the selector for your CSS
该类也可以放在你的html元素上,然后在JavaScript不可用时应该出现的所有样式都可以在选择器之前以html.no-js作为前缀.例如,这就是 HTML5 Boiler Plate 所做的.
翻译自:https://stackoverflow.com/questions/4665748/define-css-if-javascript-is-not-enabled
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- Firefox 已逐渐开始启用 TLS 1.3 支持(附带启用指南)
- 2.启用Admin
- 启用HTTPS过程实例记录
- express启用https小记
- 为你的网站启用 Https
- RabbitMQ 启用 HTTP 后台认证
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Twenty Lectures on Algorithmic Game Theory
Tim Roughgarden / Cambridge University Press / 2016-8-31 / USD 34.99
Computer science and economics have engaged in a lively interaction over the past fifteen years, resulting in the new field of algorithmic game theory. Many problems that are central to modern compute......一起来看看 《Twenty Lectures on Algorithmic Game Theory》 这本书的介绍吧!