小编典典

使用jQuery选择HTML注释

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>

这不会引起评论。


阅读 572

收藏
2020-05-10

共1个答案

小编典典

有jQuerycomments()插件将为您完成此操作。用法:

var comments = $( "#foo" ).comments();
alert(comments.html());
2020-05-10