首页 > 网站 > WEB开发 > 正文

DOM commend

2024-04-27 14:20:13
字体:
来源:转载
供稿:网友

DOM commend

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 就是用了这个。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表