You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
837816638@qq.com b02b851162
工商大学管理系统代码
5 years ago
..
event 工商大学管理系统代码 5 years ago
test 工商大学管理系统代码 5 years ago
.jshintrc 工商大学管理系统代码 5 years ago
.npmignore 工商大学管理系统代码 5 years ago
.testem.json 工商大学管理系统代码 5 years ago
.travis.yml 工商大学管理系统代码 5 years ago
CONTRIBUTION.md 工商大学管理系统代码 5 years ago
LICENCE 工商大学管理系统代码 5 years ago
README.md 工商大学管理系统代码 5 years ago
docs.mli 工商大学管理系统代码 5 years ago
document.js 工商大学管理系统代码 5 years ago
dom-comment.js 工商大学管理系统代码 5 years ago
dom-element.js 工商大学管理系统代码 5 years ago
dom-fragment.js 工商大学管理系统代码 5 years ago
dom-text.js 工商大学管理系统代码 5 years ago
event.js 工商大学管理系统代码 5 years ago
index.js 工商大学管理系统代码 5 years ago
package.json 工商大学管理系统代码 5 years ago
serialize.js 工商大学管理系统代码 5 years ago

README.md

min-document

build status dependency status

A minimal DOM implementation

Example

var document = require("min-document")

var div = document.createElement("div")
div.className = "foo bar"

var span = document.createElement("span")
div.appendChild(span)
span.textContent = "Hello!"

/*  <div class="foo bar">
        <span>Hello!</span>
    </div>
*/
var html = String(div)

Installation

npm install min-document

Contributors

  • Raynos

MIT Licenced