/*
功能:
向页面注入一个动态 css 文件
参数:
string:要注入文件的链接
*function:回调
版本:
1.0.0.1
2016年01月27日
*/
function getCSS (url, fun) {
var link = document.createElement('link');
link.href = path;
link.rel = 'stylesheet';
link.type = 'text/css';
this.DOM_head.appendChild(link);
if (fun)
setTimeout(fun, 500);
}