jQuery(document).ready(function($) {
/******* Load CSS *******/
$('head').append('<link rel="stylesheet" type="text/css" media="all" href="'+('https:' == document.location.protocol ? 'https://' : 'http://') +'thesite.com/api/widgets/tghd/pages.css">');
});
上面的代码是我用来将样式表添加到文档中的。代码检查器显示代码已添加,但控制台未显示浏览器已请求文档且样式未生效。
如何将样式表添加到已加载的文档并使其生效。
顺便提一句。如果重要的话,我会将此代码用于小部件,因此我将在多个域中使用。
预先感谢您的任何帮助!