-1

このエラーに関する以前の質問の後。

エラー: プロパティ 'split' の値を取得できません: オブジェクトが null または未定義です

次のコードを追加するための回答が提供されました。

/* Cross-Browser Split 1.0.1
(c) Steven Levithan <stevenlevithan.com>; MIT License
An ECMA-compliant, uniform cross-browser split method */

var cbSplit;

// avoid running twice, which would break `cbSplit._nativeSplit`'s reference to the native `split`
if (!cbSplit) {

cbSplit = function (str, separator, limit) {
    // if `separator` is not a regex, use the native `split`
    if (Object.prototype.toString.call(separator) !== "[object RegExp]") {
        return cbSplit._nativeSplit.call(str, separator, limit);
    }

    var output = [],
        lastLastIndex = 0,
        flags = (separator.ignoreCase ? "i" : "") +
                (separator.multiline  ? "m" : "") +
                (separator.sticky     ? "y" : ""),
        separator = RegExp(separator.source, flags + "g"), // make `global` and avoid `lastIndex` issues by working with a copy
        separator2, match, lastIndex, lastLength;

    str = str + ""; // type conversion
    if (!cbSplit._compliantExecNpcg) {
        separator2 = RegExp("^" + separator.source + "$(?!\\s)", flags); // doesn't need /g or /y, but they don't hurt
    }

    /* behavior for `limit`: if it's...
    - `undefined`: no limit.
    - `NaN` or zero: return an empty array.
    - a positive number: use `Math.floor(limit)`.
    - a negative number: no limit.
    - other: type-convert, then use the above rules. */
    if (limit === undefined || +limit < 0) {
        limit = Infinity;
    } else {
        limit = Math.floor(+limit);
        if (!limit) {
            return [];
        }
    }

    while (match = separator.exec(str)) {
        lastIndex = match.index + match[0].length; // `separator.lastIndex` is not reliable cross-browser

        if (lastIndex > lastLastIndex) {
            output.push(str.slice(lastLastIndex, match.index));

            // fix browsers whose `exec` methods don't consistently return `undefined` for nonparticipating capturing groups
            if (!cbSplit._compliantExecNpcg && match.length > 1) {
                match[0].replace(separator2, function () {
                    for (var i = 1; i < arguments.length - 2; i++) {
                        if (arguments[i] === undefined) {
                            match[i] = undefined;
                        }
                    }
                });
            }

            if (match.length > 1 && match.index < str.length) {
                Array.prototype.push.apply(output, match.slice(1));
            }

            lastLength = match[0].length;
            lastLastIndex = lastIndex;

            if (output.length >= limit) {
                break;
            }
        }

        if (separator.lastIndex === match.index) {
            separator.lastIndex++; // avoid an infinite loop
        }
    }

    if (lastLastIndex === str.length) {
        if (lastLength || !separator.test("")) {
            output.push("");
        }
    } else {
        output.push(str.slice(lastLastIndex));
    }

    return output.length > limit ? output.slice(0, limit) : output;
};

cbSplit._compliantExecNpcg = /()??/.exec("")[1] === undefined; // NPCG: nonparticipating capturing group
cbSplit._nativeSplit = String.prototype.split;

} // end `if (!cbSplit)`

// for convenience...
String.prototype.split = function (separator, limit) {
    return cbSplit(this, separator, limit);
};

上記のコードを試してキャッシュを削除した後、何もしないことがわかりました...誰でも助けてもらえますか、よろしくお願いします。

上記のコードを提供してくれたEdoDodoに感謝しますが、私はほとんど髪を引き裂いていて、最終的には機能しなかったため、さらに助けを提供してもらえますか?ホームページのサイト作業とエラーはなくなりますが、ホームページの各投稿の抜粋にリンクされたボタンが本当に必要です。

サイトは次のとおりです。

www.mobileinquirer.com

4

1 に答える 1

2

Firefoxは、スクリプトのこの部分の913行目にスクリプトエラーを表示します。

<script type="text/javascript">
    // <![CDATA[
        var disqus_shortname = 'mobileinquirer';
        var disqus_domain = 'disqus.com';
        (function () {
            var nodes = document.getElementsByTagName('span');
            for (var i = 0, url; i < nodes.length; i++) {
                if (nodes[i].className.indexOf('dsq-postid') != -1) {
                    nodes[i].parentNode.setAttribute('data-disqus-identifier', nodes[i].getAttribute('rel'));
                    url = nodes[i].parentNode.href.split('#', 1);
                    if (url.length == 1) url = url[0];
                    else url = url[1]
                    nodes[i].parentNode.href = url + '#disqus_thread';
                }
            }
            var s = document.createElement('script'); s.async = true;
            s.type = 'text/javascript';
            s.src = 'http://' + disqus_domain + '/forums/' + disqus_shortname + '/count.js';
            (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
        }());
    //]]>
    </script>

特定のエラーは次の行にあります。

url = nodes[i].parentNode.href.split('#', 1);

これは、parentNodeにhrefがないためです。このエラーは、分割関数とは何の関係もありません。コードはparentNodeのhref属性の値を取得しようとしていますが、href属性がないため、undefinedに解決されるため、splitの呼び出しは失敗します。分割機能とは何の関係もありません。問題は、マークアップが明らかに間違っていることと、disqusコードがタグの周りにタグを期待していることですが、それが見つかりません。

mobilinquirer.com HTMLソースの行664-665を見ると、このシーケンスがその行にあり、次のように数回見つかります。

<p><span
class="dsq-postid">8 Comments</span></p>

このコードはエラーの原因になります。タグには親としての<span class="dsq-postid">タグが必要です。そうでない場合、このエラーが発生します。<a href="xxx">これと同じ問題がHTMLにいくつかあります。

この問題は、分割関数とは何の関係もありません。このエラーをなくすには、HTMLを修正して、disqusコードが期待するものにするか、問題のあるdisqusコード(不要と思われる)を削除するか、またはその両方を行う必要があります。

于 2011-07-23T21:20:07.600 に答える