zyc-real-dom 中文文档教程

发布于 2年前 浏览 17 项目主页 更新于 2年前

real-dom

Building DOM and style sheet

API documentation

appendStyle(selector: string, styleSheet: CSSSheet)

以添加style标签的方式添加或覆盖样式

deleteStyle(selector: string, list?: Array)

删除 appendStyle 方法添加的样式

createElementStr(tagName: HTMLElementTag | SVGElementTag, attr: Attribute, style: CSSSheet, child: string): string

创建HTML元素,以字符串的形式返回

createHTMLElement(tagName: HTMLElementTag, attr: Attribute, style?: CSSSheet): HTMLElement

创建HTML元素,返回DOM

createSVGElement(tagName: SVGElementTag, attr: Attribute): SVGElement

创建SVG元素,返回DOM

deleteElement(selector: string, matchAll = true)

删除选择器匹配到的第一个或者全部元素

Examples

import { createHTMLElement, appendStyle, deleteStyle } from 'real-dom'

appendStyle('.link', { fontSize: '20px', color: 'red' });

const element = createHTMLElement('a', { id: 'a', class: 'link' });
element.innerHTML = 'hello world!'
element.onclick = function() {
  deleteStyle('.link', ['color']);
}
document.body.appendChild(element);
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文