标签:使用 ar type on sp app table text
var comment = document.createComment("commend content");
var elem = document.getElementById("someElement");
elem.appendChild(comment);
类型 nodeName nodeType
COMMENT_NODE #comment 8 (commend)
comment 可以用来定位,因为 textNode 不能出现在table内,可以用 comment替代。
使用场景,比如我们模板,需要 repeator 控件时,之后能动态插入的话,我们可以使用 comment 来定位。
angular ng-repeat 就是用了这个。
标签:使用 ar type on sp app table text
原文地址:http://www.cnblogs.com/keatkeat/p/3916617.html