用户脚本替换网页中的字词

时间:2017-08-29 17:42:52

标签: javascript userscripts

免责声明:我是JS中的一个家伙,我真的根本不知道,对不起,如果这真的是一个菜鸟问题。

我发现了一个用户脚本,允许您替换网页上的单词/短语。 但是,我有一个错误,表明"期望一个条件表达式,而是看到了一个任务"在第57行

该行是:

for (i = 0; text = texts.snapshotItem(i); i += 1) {

整个剧本:

(function () { 'use strict';
var words = {
    'test 1':'test 2',
    'bleh': 'blah'
};

var regexs = [],
    replacements = [],
    tagsWhitelist = ['PRE', 'BLOCKQUOTE', 'CODE', 'INPUT', 'BUTTON', 'TEXTAREA'],
    rIsRegexp = /^\/(.+)\/([gim]+)?$/,
    word, text, texts, i, userRegexp;

// prepareRegex by JoeSimmons
// used to take a string and ready it for use in new RegExp()
function prepareRegex (string) {
    return string.replace (/([\[\]\^\&\$\.\(\)\?\/\\\+\{\}\|])/g, '\\$1');
}

// function to decide whether a parent tag will have its text replaced or not
function isTagOk (tag) {
    return tagsWhitelist.indexOf (tag) === -1;
}

delete words['']; // so the user can add each entry ending with a comma,
// I put an extra empty key/value pair in the object.
// so we need to remove it before continuing

// convert the 'words' JSON object to an Array
for (word in words) {
    if (typeof word === 'string' && words.hasOwnProperty (word) ) {
        userRegexp = word.match (rIsRegexp);

        // add the search/needle/query
        if (userRegexp) {
            regexs.push (
                new RegExp (userRegexp[1], 'g')
            );
        }
        else {
            regexs.push (
                new RegExp (prepareRegex (word)
                    .replace (/\\?\*/g, function (fullMatch) {
                        return fullMatch === '\\*' ? '*' : '[^ ]*';
                    } ),
                    'g'
                )
            );
        }

        // add the replacement
        replacements.push(words[word]);
    }
}

// do the replacement
texts = document.evaluate ('//body//text()[ normalize-space(.) != "" ]', document, null, 6, null);
for (i = 0; text = texts.snapshotItem (i); i += 1) {
    if (isTagOk (text.parentNode.tagName) ) {
        regexs.forEach (function (value, index) {
            text.data = text.data.replace (value, replacements[index]);
        } );
    }
}
} () );

有人能解释一下这意味着什么(我喜欢了解我的意思),以及如何解决这个问题?

1 个答案:

答案 0 :(得分:4)

=是一个赋值运算符。

在此上下文中赋值无效,因为for循环需要一个条件。

您需要使用比较运算符,例如==<=>=

一种可能的解决方法是:

for (i = 0; text = texts.snapshotItem(i); i += 1) {

for (i = 0; text == texts.snapshotItem(i); i += 1) {