Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 js 或 jquery,我如何将页面中的外部 css 样式表放入字符串中,对其进行处理,然后重新应用它?
我需要将外部 css 样式表作为字符串,而不是任何计算的应用样式。
好吧,我完全不知道您为什么要这样做,但是您可以使用 AJAX:
$.ajax({ url : "path_to_css.css", type: "GET", success : function(data){ console.log(data); //data is your string } });
我不太确定您将如何重新应用样式表。
或者你可以像其他人一样使用 JavaScript/JQuery 来操作元素的 CSS。