"use strict"
アプリケーションでは、DOM ツリーをトラバースするために使用しdocument.createTreeWalker
ています。ブラウザーからツリーを取得したら、while ループを使用して値を配列にプッシュします。このコードは優れたLetteringjs.comプラグインへのアップグレードであり、私のバージョンはここで動作しているのを見ることができます。
function injector(t, splitter, klass, after) {
var inject = '', n,
tree = [],
styleStack = [],
splitIndex = 0,
styleAndSplit = function (node, splitter, klass, after) {
var particles = $(node).text().split(splitter);
// Wrap each particle with parent style tags if present
for (var j = 0, len = particles.length; j < len; j++) {
var str = '<span class="'+klass+((splitIndex++)+1)+'">'+particles[j]+'</span>'+after;
for (var k = styleStack.length - 1, style; style = styleStack[k--];) {
str = '<' + style.tagName.toLowerCase() + (style.className ? ' class="' + style.className + '"' : '') + '>' +
str +
'</' + style.tagName.toLowerCase() + '>'
}
inject += str;
}
},
Walker /* Texas Ranger */ = document.createTreeWalker(
t,
NodeFilter.SHOW_ALL,
{ acceptNode: function (node) {
// Keep only text nodes and style altering tags
if (node.nodeType === 3 || node.nodeType === 1 && !!node.tagName &&
(node.tagName.toLowerCase() === 'i' ||
node.tagName.toLowerCase() === 'b' ||
node.tagName.toLowerCase() === 'u' ||
node.tagName.toLowerCase() === 'span')) {
return NodeFilter.FILTER_ACCEPT;
} else {
return NodeFilter.FILTER_SKIP;
}
}},
false
);
while (n = Walker.nextNode()) tree.push(n);
// This loop traverses all of the nodes in the order they appear within the HTML tree
// It will then stack up nested styling tags accordingly
for (var i = 0, node; node = tree[i++];) {
if (node.nodeType === 1) {
styleStack.push(node);
} else {
// Get rid of nodes containing only whitespace (newlines specifically)
if ($.trim(node.nodeValue).length) {
while (styleStack.length && node.parentNode !== styleStack[styleStack.length - 1]) { styleStack.pop(); }
styleAndSplit(node, splitter, klass, after);
}
}
}
$(t).empty().append(inject);
}
このコードは、Firefox、Chrome、およびモバイル ブラウザーでも機能します。しかし、IE9 と IE10 はうまく動作しません。
どちらも行の実行を中断し、次のwhile (n = Walker.nextNode()) tree.push(n);
プロンプトを表示します。
SCRIPT1047: 厳密モードでは、関数宣言をステートメントまたはブロック内にネストすることはできません。これらは、最上位レベルまたは関数本体内に直接表示される場合があります。
編集:これは、このエラーをスローする必要があるものに関するMSDNの例です:
var arr = [1, 2, 3, 4, 5];
var index = null;
for (index in arr) {
function myFunc() {};
}
編集:しかし、それは意味がありません。関数を宣言していないため、関数を実行しているだけです。とにかく、関数宣言を削除するというfred02138の提案に従いstyleAndSplit
ました(呼び出しを関数コードに置き換え、宣言を消去しただけです)-しかし、エラーは修正されませんでした。
a をトラバースする別の方法はありますTreeWalker
か、または IE の回避策はありますか (厳密モードを失うことなく)?