查找和替换整个页面

时间:2011-10-16 04:15:15

标签: javascript jquery random replace find

我正在尝试为整个页面创建查找和替换。

我正在使用findandreplace这是一个迷你插件,它是:

function findAndReplace(searchText, replacement, searchNode) {
    if (!searchText || typeof replacement === 'undefined') {
       alert("Please Enter Some Text Into the Field");
        return;
    }
    var regex = typeof searchText === 'string' ?
                new RegExp(searchText, 'g') : searchText,
        childNodes = (searchNode || document.body).childNodes,
        cnLength = childNodes.length,
        excludes = 'html,head,style,title,link,meta,script,object,iframe';
    while (cnLength--) {
        var currentNode = childNodes[cnLength];
        if (currentNode.nodeType === 1 &&
            (excludes + ',').indexOf(currentNode.nodeName.toLowerCase() + ',') === -1) {
            arguments.callee(searchText, replacement, currentNode);
        }
        if (currentNode.nodeType !== 3 || !regex.test(currentNode.data) ) {
            continue;
        }
        var parent = currentNode.parentNode,
            frag = (function(){
                var html = currentNode.data.replace(regex, replacement),
                    wrap = document.createElement('div'),
                    frag = document.createDocumentFragment();
                wrap.innerHTML = html;
                while (wrap.firstChild) {
                    frag.appendChild(wrap.firstChild);
                }
                return frag;
            })();
        parent.insertBefore(frag, currentNode);
        parent.removeChild(currentNode);
    }
}

目前我需要使用find按钮为找到的每个Item创建一个单独的JS。我做了它,所以它为每个找到的项添加了一个不同的随机ID。现在我只需要JS。当我完成这一切时,我会想要它,所以当你点击其中一个找到的单词时,它有一个弹出窗口(不是警告)说:“用以下代码替换:{INPUT HERE}”然后它将替换该单词。我觉得那很酷。

我的查找代码是:

document.getElementById('find').onsubmit = function() {
    findAndReplace(document.getElementById('fText').value, function(hi) {
        var n = Math.floor(Math.random() * 9999999999);
        var s = Math.floor(Math.random() * 30);

        $('#fade').after('<span id="show' + n + '" style="display:none;"></span>');
        $('#show' + n + '').html(hi);
        $('body').prepend("<script type='text/javascript'>$('#highlight" + n + "').click(function(){$('#fade').show();});$('#highlight" + n + "').mouseover(function(){$('#highlight" + n + "').css('background', 'blue');});$('#highlight" + n + "').mouseout(function(){$('#highlight" + n + "').css('background', 'yellow');});</sc" + "ript>");
        return '<span id="highlight' + n + '" style="background: yellow;color: black;">' + hi + '</span>';

    });
    return false;
};

我发现.html无法将<script>标记放入文档中,所以我希望还有另一种方法可以做到这一点。 它看起来有点疯狂。 Mabye你可以更好地看到它并知道我想要什么here

我希望有人可以提供帮助。谢谢。

1 个答案:

答案 0 :(得分:1)

我在脚本的末尾添加了以下代码。它从提示中获取输入,但它将“替换所有”,而不仅仅是您单击的那个。

$('span[id^=highlight]').live('click', function () {
    replacePrompt = prompt('Replace Word with:','{INPUT HERE}');
    findAndReplace(document.getElementById('fText').value, function() {
        return '<span class="highlight2" style="background: white;color: black;">' + replacePrompt + '</span>';
    });
    return false;
})

也许我可以在完成findAndReplace功能之后解决问题..

更新:解决方案是根本不使用findAndReplace插件。我仍然不确定,但这可能是你想要的。

$('span[id^=highlight]').live('click', function () {
    replacePrompt = prompt('Replace Word with:','{INPUT HERE}');
    $(this).text(replacePrompt);
})