参考JS中本地存储的CSS文件

时间:2017-04-27 17:16:45

标签: javascript jquery css createelement

我正在使用ASP.NET应用程序。我使用过Highcharts JS库。 现在,在Highcharts库附带的一些JS文件中包含对外部站点的引用。例如。)

Highcharts.createElement('link', {
    href: 'https://fonts.googleapis.com/css?family=Dosis:400,600',
    rel: 'stylesheet',
    type: 'text/css'
}, null, document.getElementsByTagName('head')[0]);

此createElement由Highcharts库本身的另一个JS文件调用。 例如。)

createElement = Highcharts.createElement

现在我已经在本地保存了由href引用的文件,并将它们包含在我的项目解决方案中。 我的问题是如何让createElement引用本地保存的文件而不是指向Web。

这就是我的目录结构的样子:

- XYZProject

     -Scripts

          - Highcharts

                  - Style - (Here I have saved all the CSS files which were being refrenced in the createElement

                         - themes (Contains all the library files and contains the above mentioned code)

假设我的样式文件夹中的href中的上述refrenced网站的文件名为 abc.css 。如何在themes文件夹中创建文件以引用 abc.css

0 个答案:

没有答案