jQuery 追加 CSS 文件并等待加载?

jQuery Append CSS File and Wait until Loaded?(jQuery 追加 CSS 文件并等待加载?)
本文介绍了jQuery 追加 CSS 文件并等待加载?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用

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

这很好用 - 但是,我有一些在添加 css 之后运行的函数,我想不出一种方法让这些函数等到这个文件完成加载?

That works great - however, I have some functions that run AFTER the css has been added and I can't figure out a way for these to wait until this file has finished loading ?

我该怎么做?

推荐答案

只需检查新 CSS 的规则之一何时应用即可:

Just check when one of the rules of the new CSS has been applied:

$('head').append('<link rel="stylesheet" href="http://cdn.sstatic.net/stackoverflow/all.css?v=d4a5c7ca0d4c" type="text/css" />');

var fakeListener = setInterval(function(){
    if($("body").css("text-align")=== "center"){
        clearInterval(fakeListener)
        // What you want to do after it loads
    }
},50)

(这是一个工作示例)

这篇关于jQuery 追加 CSS 文件并等待加载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Append Previous State to New State in Redux(将先前状态追加到Redux中的新状态)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
How to trim() white spaces from a string?(如何从字符串中去掉()空格?)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)
How to minify json response?(如何缩小JSON反应?)