文件名称:prop-bind:创建一个改变值的属性基于另一个属性
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-24 17:42:24
JavaScript
道具绑定 创建一个改变值的属性基于另一个属性 例子 创建一个元素并绑定道具: var propBind = require ( 'prop-bind' ) function MyButton ( el ) { propBind ( this , 'className' , ':my-button checked:is-checked:not-checked' ) this . checked = false } 然后当元素被使用时: var button = new MyButton ( ) console . log ( button . className ) // = 'my-button not-checked' button . checked = true console . log ( button . className ) // = 'my-button
【文件预览】:
prop-bind-master
----.gitignore(13B)
----README.md(2KB)
----test()
--------index.js(2KB)
----.zuul.yml(94B)
----package.json(861B)
----index.js(849B)
----.travis.yml(2KB)