有没有一种简单的方法来重新加载CSS而无需重新加载页面?

时间:2010-01-07 23:31:02

标签: javascript css stylesheet reload

我正在尝试使用预览功能制作一个实时的页内css编辑器,该功能可以重新加载样式表并应用它而无需重新加载页面。什么是最好的方法呢?

13 个答案:

答案 0 :(得分:101)

可能不适用于您的情况,但这是我用于重新加载外部样式表的jQuery函数:

/**
 * Forces a reload of all stylesheets by appending a unique query string
 * to each stylesheet URL.
 */
function reloadStylesheets() {
    var queryString = '?reload=' + new Date().getTime();
    $('link[rel="stylesheet"]').each(function () {
        this.href = this.href.replace(/\?.*|$/, queryString);
    });
}

答案 1 :(得分:45)

在“修改”页面上,不是以正常方式包含CSS(使用<link>标记),而是将其全部写入<style>标记。编辑它的innerHTML属性将自动更新页面,即使没有往返服务器也是如此。

<style type="text/css" id="styles">
    p {
        color: #f0f;
    }
</style>

<textarea id="editor"></textarea>
<button id="preview">Preview</button>

Javascript,使用jQuery:

jQuery(function($) {
    var $ed = $('#editor')
      , $style = $('#styles')
      , $button = $('#preview')
    ;
    $ed.val($style.html());
    $button.click(function() {
        $style.html($ed.val());
        return false;
    });
});

那应该是它!

如果你想要非常喜欢,可以将功能附加到textarea上的keydown,虽然你可能会得到一些不必要的副作用(页面会随着你的输入而不断变化)

编辑:经过测试和运行(至少在Firefox 3.5中,但对其他浏览器应该没问题)。请参阅此处的演示:http://jsbin.com/owapi

答案 2 :(得分:7)

查看Andrew Davey时髦的Vogue项目 - http://aboutcode.net/vogue/

答案 3 :(得分:6)

另一个jQuery解决方案

对于id为#34; css&#34;的单个样式表试试这个:

$('#css').replaceWith('<link id="css" rel="stylesheet" href="css/main.css?t=' + Date.now() + '"></link>');

将其包含在具有全局scrope的函数中,您可以在Chrome中的Developer Console或Firefox中的Firebug中使用它:

var reloadCSS = function() {
  $('#css').replaceWith('<link id="css" rel="stylesheet" href="css/main.css?t=' + Date.now() + '"></link>');
};

答案 4 :(得分:5)

绝对不需要使用jQuery。以下JavaScript函数将重新加载所有CSS文件:

function reloadCss()
{
    var links = document.getElementsByTagName("link");
    for (var cl in links)
    {
        var link = links[cl];
        if (link.rel === "stylesheet")
            link.href += "";
    }
}

答案 5 :(得分:4)

Vanilla JS中的一个较短版本,在一行中:

for (var link of document.querySelectorAll("link[rel=stylesheet]")) link.href = link.href.replace(/\?.*|$/, "?ts=" + new Date().getTime())

或扩展:

for (var link of document.querySelectorAll("link[rel=stylesheet]")) {
  link.href = link.href.replace(/\?.*|$/, "?ts=" + new Date().getTime())
}

答案 6 :(得分:3)

根据以前的解决方案,我使用JavaScript代码创建了书签:

javascript: { var toAppend = "trvhpqi=" + (new Date()).getTime(); var links = document.getElementsByTagName("link"); for (var i = 0; i < links.length;i++) { var link = links[i]; if (link.rel === "stylesheet") { if (link.href.indexOf("?") === -1) { link.href += "?" + toAppend; } else { if (link.href.indexOf("trvhpqi") === -1) { link.href += "&" + toAppend; } else { link.href = link.href.replace(/trvhpqi=\d{13}/, toAppend)} }; } } }; void(0);

来自Firefox的图片:

enter image description here

它做了什么?

它通过添加查询字符串参数(如上面的解决方案)重新加载CSS:

答案 7 :(得分:0)

是的,重新加载css标记。并记住使新网址唯一(通常通过附加随机查询参数)。我有代码可以做到这一点,但现在不能和我在一起。稍后会编辑......

编辑:太晚了...哈托和尼克夫打败了我; - )

答案 8 :(得分:0)

我现在有这个:

    function swapStyleSheet() {
        var old = $('#pagestyle').attr('href');
        var newCss = $('#changeCss').attr('href');
        var sheet = newCss +Math.random(0,10);
        $('#pagestyle').attr('href',sheet);
        $('#profile').attr('href',old);
        }
    $("#changeCss").on("click", function(event) { 
        swapStyleSheet();
    } );

使用带有新css网址的href属性,使用id changeCss创建页面中的任何元素。和一个起始css的链接元素:

<link id="pagestyle" rel="stylesheet" type="text/css" href="css1.css?t=" />

<img src="click.jpg" id="changeCss" href="css2.css?t=">

答案 9 :(得分:0)

另一个答案: 有一个名为ReCSS的书签。我没有广泛使用它,但似乎工作。

该页面上有一个书签,可以拖放到你的地址栏上(似乎无法在这里制作一个)。万一破了,这是代码:

javascript:void(function()%7Bvar%20i,a,s;a=document.getElementsByTagName('link');for(i=0;i%3Ca.length;i++)%7Bs=a[i];if(s.rel.toLowerCase().indexOf('stylesheet')%3E=0&&s.href)%20%7Bvar%20h=s.href.replace(/(&%7C%5C?)forceReload=%5Cd%20/,'');s.href=h%20(h.indexOf('?')%3E=0?'&':'?')%20'forceReload='%20(new%20Date().valueOf())%7D%7D%7D)();

答案 10 :(得分:0)

您可以使用 rel =&#34; reload&#34; 代替 rel =&#34;样式表&#34;

<link rel="preload" href="path/to/mystylesheet.css" as="style" onload="this.rel='stylesheet'">

答案 11 :(得分:0)

简单(如果您使用的是php) 只需在

之类的css末尾附加当前时间
<link href="css/name.css?<?php echo 
time(); ?>" rel="stylesheet">

所以现在每次您重新加载它时,时间都会改变,浏览器认为它的文件不同,因为最后一位一直在变化。...U可以对任何文件执行此操作,您可以强制浏览器始终使用任何脚本语言进行刷新你想要

答案 12 :(得分:0)

由于此问题已在2019年的stackoverflow中显示,我想使用更现代的JavaScript添加我的贡献。

具体来说,对于非内联的CSS样式表-由于某种程度上已经涵盖在原始问题中。

首先,请注意,我们仍然没有可构造样式表对象。但是,我们希望他们尽快降落。

同时,假设以下HTML内容:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link id="theme" rel="stylesheet" type="text/css" href="./index.css" />
    <script src="./index.js"></script>
  </head>
  <body>
    <p>Hello World</p>
    <button onclick="reload('theme')">Reload</button>
  </body>
</html>

我们可以在index.js中找到

// Utility function to generate a promise that is 
// resolved when the `target` resource is loaded,
// and rejected if it fails to load.
//
const load = target =>
  new Promise((rs, rj) => {
    target.addEventListener("load", rs, { once: true });
    target.addEventListener(
      "error",
      rj.bind(null, `Can't load ${target.href}`),
      { once: true }
    );
  });


// Here the reload function called by the button.
// It takes an `id` of the stylesheet that needs to be reloaded
async function reload(id) {
  const link = document.getElementById(id);

  if (!link || !link.href) {
    throw new Error(`Can't reload '${id}', element or href attribute missing.`);
  }

  // Here the relevant part.
  // We're fetching the stylesheet from the server, specifying `reload`
  // as cache setting, since that is our intention.
  // With `reload`, the browser fetches the resource *without* first looking
  // in the cache, but then will update the cache with the downloaded resource.
  // So any other pages that request the same file and hit the cache first,
  // will use the updated version instead of the old ones.
  let response = await fetch(link.href, { cache: "reload" });

  // Once we fetched the stylesheet and replaced in the cache,
  // We want also to replace it in the document, so we're
  // creating a URL from the response's blob:
  let url = await URL.createObjectURL(await response.blob());

  // Then, we create another `<link>` element to display the updated style,
  // linked to the original one; but only if we didn't create previously:
  let updated = document.querySelector(`[data-link-id=${id}]`);

  if (!updated) {
    updated = document.createElement("link");
    updated.rel = "stylesheet";
    updated.type = "text/css";
    updated.dataset.linkId = id;
    link.parentElement.insertBefore(updated, link);

    // At this point we disable the original stylesheet,
    // so it won't be applied to the document anymore.
    link.disabled = true;
  }

  // We set the new <link> href...
  updated.href = url;

  // ...Waiting that is loaded...
  await load(updated);

  // ...and finally tell to the browser that we don't need
  // the blob's URL anymore, so it can be released.
  URL.revokeObjectURL(url);
}