如何使用jquery加载CSS

时间:2010-10-12 09:49:11

标签: jquery html css stylesheet

我在服务器上加载了一个css文件,所以我有一个URL跟我一起。如何使用JQuery在我的perl代码中加载它?

所以目前我正在硬编码我的梅森页面中的css,页面中缺少这样的

JQ.onReady('show', function(){
    JQ.addStyles({styles: ["\n\n.ap_classic { border-top:1px solid #ccc;border-left:1px solid #ccc;border-bottom:1px solid #2F2F1D; border-right:1px solid   #2F2F1D;background-color:#EFEDD4;padding:3px; }  .ap_classic .ap_titlebar { color:#86875D;font-size:12px;padding:0 0 3px 0;line-height:1em; }  .ap_classic .ap_close { float:right; }  .ap_classic .ap_content { clear:both;background-color:white;border:1px solid #ACA976;padding:8px;font-size:11px; } "]});
});

我想避免硬编码这个CSS?

4 个答案:

答案 0 :(得分:74)

我不明白为什么你不能在<link/>部分插入<head/>元素,但这里是一个jQuery片段:

$('head').append( $('<link rel="stylesheet" type="text/css" />').attr('href', 'your stylesheet url') );

答案 1 :(得分:38)

再次,按照Dynamically loading css stylesheet doesn't work on IE

你需要设置最后一个href attr,并且只有在链接元素附加到头部后才能设置:

$('<link>')
  .appendTo('head')
  .attr({
      type: 'text/css', 
      rel: 'stylesheet',
      href: '/css/your_css_file.css'
  });

答案 2 :(得分:0)

$(document).ready(function(){
    console.log("ready!");
var e=$("<link>",{
    rel:"stylesheet",
    type:"text/css",
    href:"/your/css/file.css"})[0];
e.onload=function(){
console.log("CSS IN IFRAME LOADED")},
document.getElementsByTagName("head")[0].
appendChild(e)});

答案 3 :(得分:0)

我喜欢语言和文件类型保持一致(例如:不要将CSS与html混合使用)。因此,我将创建一个style.css文件,并使用jQuery将其加载到标签中。

index.html

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
    <div>
        <style id="import"></style>
        <h2 class="red">this is red</h2>
    </div>
    <script type="text/javascript">
        $( document ).ready(function() {
            $( "#import" ).load( "./style.css" );
        });
    </script>
</body>
</html>

style.css

.red{
    color: red;
}