我的主页上有一个特色滑块,如果禁用 javascript,我已经将其完全隐藏。如果启用了 javascript,我有一个脚本会显示特色滑块。
document.write('<style type="text/css">#JQuerySlider1Container{ display: block !important;}</style>');
显然,根据 W3C,该代码无效。(尽管它起作用了,所以这真是太可惜了)。
我找到了一段我喜欢的替代代码,但我必须拥有 !important 才能显示滑块。
document.getElementById('JQuerySlider1Container').style.display='block !important';
但它不适用于 !important。有人有这个问题的简单解决方案吗?