js控制重新加载css和js


重新加载js的方法

var head = $("head").remove("script[role='reload']");
			$("" + "").attr({ role: 'reload', src: getRootPath()+"/js/video.js", type: 'text/javascript' }).appendTo(head);
重新加载css的方法

var link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = getRootPath()+"/css/video.css";
document.getElementsByTagName("head")[0].appendChild(link);


你可能感兴趣的:(Java)