使用说明
This commit is contained in:
parent
6967078a43
commit
c5ee9687c9
15
README.md
15
README.md
@ -60,3 +60,18 @@ div(option).children([
|
||||
div.text('Hello world!')
|
||||
])
|
||||
```
|
||||
|
||||
由于返回值是真实的 DOM 对象, 它具有原生 DOM 对象的所有方法, 因而可以这样使用它
|
||||
```javascript
|
||||
const demo = div.w(128).h(64).children([
|
||||
div.text('Hello world!'),
|
||||
div.text('Hello world!'),
|
||||
div.text('Hello world!')
|
||||
])
|
||||
demo.textContent = 'hello world!'
|
||||
document.body.appendChild(demo)
|
||||
```
|
||||
|
||||
然而 dom 元素的 textContent 并不是一个函数方法而是一个变量值, 自然无法使用链式调用 `demo.textContent('hello world!')`
|
||||
为了减少代码量也为了避免破坏dom基本结构, 所有额外提供的方法都使用缩写,
|
||||
像是这样 `demo.text('hello world!')`
|
||||
|
Loading…
Reference in New Issue
Block a user