18

これは聞いたことがありませんが、JS を使用して DOM からノードを取得し、そのノードがファイルのどの行で発生したかを調べることは可能ですか?

私は何でも、代替ブラウザーのプラグイン/アドオンなどにオープンです...言うまでもなく、クロスブラウザーである必要はありません。

一部のJSデバッガーはスクリプトタグ内の行番号を見つけることができることを考えると、これは何らかの形で可能であると思いますが、完全にはわかりません.

4

4 に答える 4

8

わかりました、これがどれほど大きいかを許してください。これは非常に興味深い質問だと思いましたが、いじってみると、innerHTML とその同類は、空白やコメントなどを維持するという点で非常に信頼性が低いことにすぐに気付きました。完全なソースを入手したことを絶対に確信できるように。次に、jquery といくつかの (比較的小さい) 正規表現を使用して、各ノードの場所を見つけました。いくつかのエッジケースを見逃したと確信していますが、うまく機能しているようです。そして、ええ、ええ、正規表現と2つの問題、何とか何とか何とか。

編集: jquery プラグインを作成する演習として、以下の html に似た例を使用して、スタンドアロンプラグインとして適切に機能するようにコードを変更しました (後世のためにここに残しておきます)。私はコードをもう少し堅牢なものにしようとしましたが (onclick などの引用符で囲まれた文字列内のタグを処理するなど)、残っている最大のバグは、要素の追加など、ページへの変更を説明できないことです。そのケースを処理するには、おそらく ajax 呼び出しの代わりに iframe を使用する必要があります。

<html>
    <head id="node0">
    <!-- first comment -->
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
        <style id="node1">
/*          div { border: 1px solid black; } */
            pre { border: 1px solid black; }
        </style>
    <!-- second comment -->
        <script>
            $(function() {

                // fetch and display source
                var source;
                $.ajax({
                    url: location.href,
                    type: 'get',
                    dataType: 'text',
                    success: function(data) {
                        source = data;


                        var lines = data.split(/\r?\n/);
                        var html = $.map(lines, function(line, i) {
                            return ['<span id="line_number_', i, '"><strong>', i, ':</strong> ', line.replace(/</g, '&lt;').replace(/>/g, '&gt;'), '</span>'].join('');
                        }).join('\n');

                        // now sanitize the raw html so you don't get false hits in code or comments
                        var inside = false;
                        var tag = '';
                        var closing = {
                            xmp: '<\\/\\s*xmp\\s*>',
                            script: '<\\/\\s*script\\s*>',
                            '!--': '-->'
                        };
                        var clean_source = $.map(lines, function(line) {
                            if (inside && line.match(closing[tag])) {
                                var re = new RegExp('.*(' + closing[tag] + ')', 'i');
                                line = line.replace(re, "$1");
                                inside = false;
                            } else if (inside) {
                                line = '';
                            }

                            if (line.match(/<(script|!--)/)) {
                                tag = RegExp.$1;
                                line = line.replace(/<(script|xmp|!--)[^>]*.*(<(\/(script|xmp)|--)?>)/i, "<$1>$2");
                                var re = new RegExp(closing[tag], 'i');
                                inside = ! (re).test(line);
                            }
                            return line;
                        });

                        // nodes we're looking for
                        var nodes = $.map([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], function(num) { return $('#node' + num) });

                        // now find each desired node in both the DOM and the source
                        var line_numbers = $.map(nodes, function(node) {
                            var tag = node.attr('tagName');
                            var tags = $(tag);
                            var index = tags.index(node) + 1;

                            var count = 0;
                            for (var i = 0; i < clean_source.length; i++) {
                                var re = new RegExp('<' + tag, 'gi');
                                var matches = clean_source[i].match(re);
                                if (matches && matches.length) {
                                    count += matches.length;
                                    if (count >= index) {
                                        console.debug(node, tag, index, count, i);
                                        return i;
                                    }
                                }
                            }


                            return count;
                        });

                        // saved till end to avoid affecting source html
                        $('#source_pretty').html(html);
                        $('#source_raw').text(source);
                        $('#source_clean').text(clean_source.join('\n'));

                        $.each(line_numbers, function() { $('#line_number_' + this).css('background-color', 'orange'); });
                    },
                });

                var false_matches = [
                    "<div>",
                    "<div>",
                    "</div>",
                    "</div>"
                ].join('');

            });
        </script>
    </head>
    <!-- third comment -->
    <body id="node2">
        <div>
            <pre id="source_pretty">
            </pre>
            <pre id="source_raw">
            </pre>
            <pre id="source_clean">
            </pre>
        </div>

        <div id="node3">
            <xmp>
                <code>
                // <xmp> is deprecated, you should put it in <code> instead
                </code>
            </xmp>
        </div>

    <!-- fourth comment -->
<div><div><div><div><div><div><span><div id="node4"><span><span><b><em>
<i><strong><pre></pre></strong></i><div><div id="node5"><div></div></div></div></em>
</b></span><span><span id="node6"></span></span></span></div></span></div></div></div></div></div></div>


        <div>
            <div>
                <div id="node7">
                    <div>
                        <div>
                            <div id="node8">
                                <span>
    <!-- fifth comment -->
                                    <div>
                                        <span>
                                            <span>
                                                <b>
                                                    <em id="node9">
                                                        <i>
                                                            <strong>
                                                                <pre>
                                                                </pre>
                                                            </strong>
                                                        </i>
                                                        <div>
                                                            <div>
                                                                <div>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </em>
                                                </b>
                                            </span>
                                            <span>
                                                <span id="node10">
                                                </span>
                                            </span>
                                        </span>
                                    </div>
                                </span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </body>
</html>
于 2010-01-12T05:42:18.043 に答える
1

これは可能です。次のように、ドキュメント内の最上位ノードを取得することから始めます。

var htmlNode = document.getElementsByTagName('html')[0];
var node = htmlNode;
while (node.previousSibling !== null) {
    node = node.previousSibling;
}
var firstNode = node;

(このコードはテストされ、doctype ノードと html ノードの上のコメントの両方を取得しました)

次に、すべてのノード (兄弟と子の両方) をループします。IE では、(テキスト ノードではなく) 要素とコメントのみが表示されるため、FF やクロムなどを使用するのが最適です (クロス ブラウザーである必要はないと言っていました)。

各テキスト ノードに到達したら、それを解析してキャリッジ リターンを探します。

于 2010-01-11T20:31:24.680 に答える
1

このようなもの?

var wholeDocument = document.getElementsByTagName('html')[0]
var findNode = document.getElementById('whatever')
var documentUpToFindNode = wholeDocument.substr(0, wholeDocument.indexOf(findNode.outerHTML))
var nlsUpToFindNode = documentUpToFindNode.match(/\n/g).length
于 2010-01-11T20:36:01.943 に答える
-2

あなたは試すことができます: -

 - start at the 'whatever' node, 
 - traverse to each previous node back to the doc begining while concatenating the html of each node, 
 - then count the new lines in your collected HTML.

それは良い質問です:)

于 2010-01-12T03:45:35.187 に答える