最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery Append CSS File and Wait until styles are applied without setInterval? - Stack Overflow

programmeradmin0浏览0评论

I load CSS by:

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

It works, but I have a function that needs to run after the CSS has been applied, and I don't want use setInterval for it.

How can I do this ?

I load CSS by:

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

It works, but I have a function that needs to run after the CSS has been applied, and I don't want use setInterval for it.

How can I do this ?

Share Improve this question edited Aug 19, 2015 at 4:40 Kaiido 137k14 gold badges258 silver badges324 bronze badges asked Aug 19, 2015 at 2:42 ThuyNguyenThuyNguyen 1,1853 gold badges14 silver badges26 bronze badges 3
  • stackoverflow./a/8767297/3344111 or stackoverflow./a/26169508/3344111 – Tahir Ahmed Commented Aug 19, 2015 at 2:50
  • 3 possible duplicate of jQuery Append CSS File and Wait until Loaded? – bestprogrammerintheworld Commented Aug 19, 2015 at 4:44
  • @CVers, none of the solutions in the could be dupe does deal with OP's requirements : "don't use setInterval", accepted answer does this, and "wait until styles are applied", second answer only waits for the document has loaded. – Kaiido Commented Aug 19, 2015 at 7:21
Add a ment  | 

2 Answers 2

Reset to default 7

One solution, if you've got access to the css file you're loading,
is to use the transitionend event, and to activate a transition, with duration set to 0.1, from your css.

Like so, you are sure the CSS has been calculated.

style2.css

 body{opacity:1;}

index.html

<style>
    body{transition : opacity 0.1s linear; opacity:.9};
</style>
<body>
   ...
<script>
    document.body.addEventListener('transitionend', function(){
        alert('done');
       }, false);
    $('head').append('<link rel="stylesheet" href="style2.css" type="text/css" />');

Edit:
For the ones that would need a js function (without external files) : https://jsfiddle/t0akchuw/

You can use the load event

$('<link />', {
  rel: 'stylesheet',
  ref: 'https://cdnjs.cloudflare./ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.css',
  type: 'text/css',
  onload: function() {
    snippet.log('loaded')
  }
}).appendTo('head')
<script src="https://ajax.googleapis./ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Provides the `snippet` object, see http://meta.stackexchange./a/242144/134069 -->
<script src="http://tjcrowder.github.io/simple-snippets-console/snippet.js"></script>


Another syntax

$('head').append('<link rel="stylesheet" href="https://cdnjs.cloudflare./ajax/libs/font-awesome/4.3.0/css/font-awesome.css" type="text/css" onload="dosomething()" />');

function dosomething(){
    alert('d')
}
发布评论

评论列表(0)

  1. 暂无评论