vditor
Version:
♏ 易于使用的 Markdown 编辑器,为适配不同的应用场景而生
11 lines (10 loc) • 385 B
text/typescript
export const addStyle = (url: string, id: string) => {
if (!document.getElementById(id)) {
const styleElement = document.createElement("link");
styleElement.id = id;
styleElement.rel = "stylesheet";
styleElement.type = "text/css";
styleElement.href = url;
document.getElementsByTagName("head")[0].appendChild(styleElement);
}
};