Rivets.js如果绑定函数调用

时间:2016-01-26 00:08:43

标签: javascript html model-view-controller custom-data-attribute rivets.js

我试图使用rivets.js附带的默认绑定器,if和除非并且想要评估dom元素的返回值。

HTML

<div id="elem" custom-attribute="false">
    <h1 rv-if="testing.getAttribute('custom-attribute')">Testing </h1>
</div>

JS

rivets.bind(document, testing: document.getElementbyId(elem);

从dom元素访问自定义布尔属性以评估绑定时的铆钉的最佳方法是什么?我是否必须实施自定义活页夹?

我也是这样做的,但我听说这对练习非常不满意

document.getElementbyId("elem").customAttr=false;
rivets.bind(document, testing: document.getElementbyId(elem);

然后在HTML

 <div id="elem" custom-attribute="false">
    <h1 rv-if="testing.customAttr">Testing </h1>
</div>

下面的方法有效,但是以这种方式设置元素属性的确切方法是什么?使用数据属性的最佳方式是标准方式铆钉默认情况下,如果和除非绑定器&gt;

0 个答案:

没有答案