为了账号安全,请及时绑定邮箱和手机立即绑定

使用jQuery选择HTML注释

使用jQuery选择HTML注释

函数式编程 2019-08-27 16:53:38
使用jQuery选择HTML注释有没有人知道如何用jQuery选择HTML注释节点?<html><head>     <title>Check Test</title>     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>     <script type="text/javascript">         $(function() {             $("body *").each(function() {                 alert($(this).wrap("<span />").parent().html());             });         });     </script></head><body>     <!-- Hello -->       <p>         <label for="thing">Thing Label</label>         <input id="thing" type="checkbox" />     </p>这不会发表评论。
查看完整描述

3 回答

?
隔江千里

TA贡献1906条经验 获得超10个赞

这似乎与你正在寻找的东西相当:

    $(function() {
        $("body").contents().filter(function(){
            return this.nodeType == 8;
        }).each(function(i, e){
            alert(e.nodeValue);
        });
    });


查看完整回答
反对 回复 2019-08-27
  • 3 回答
  • 0 关注
  • 689 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信