独特的查找/替换系统不工作

Unique Find/Replace System Not Working

本文关键字:系统 工作 替换 查找      更新时间:2023-09-26

我正在创建一个真正的查找/替换系统,但其中一个主要功能不起作用。

应该发生什么:

一旦你搜索所有找到的单词将突出显示在页面上。我希望你可以点击它,它会打开一个Div说:用{INPUT}替换{WORD HERE}然后你可以点击替换它会用输入的文本替换那个单词。

我正在使用findAndReplace插件,我不想改变它。

行不通的地方:

一旦你点击这个词,这个框打开,但我不知道如何使找到的文本替换为一个在输入。我的一些代码是一行格式的,因为我有:

return 'Code Here';

我的Javascript:

shortcut.add("Ctrl+F", function() {
    $('#finder').animate({
        'bottom': '-53px'
    }, 100);
});
shortcut.add("Shift+F", function() {
    $('#finder').animate({
        'bottom': '0px'
    }, 100);
});
shortcut.add("Ctrl+C", function() {
    $('#finder').animate({
        'bottom': '-150px'
    }, 100);
});
function findAndReplace(searchText, replacement, searchNode) {
    if (!searchText || typeof replacement == '') {
        $('.r').css({
            'background': 'white',
            'color': 'black'
        });
        return;
    }
    if (!searchText || typeof replacement === 'undefined') {
        alert('No Items Found');
        $('.r').css({
            'background': 'white',
            'color': 'black'
        });
        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').submit(function() {
    findAndReplace(document.getElementById('fText').value, function(hi) {
        var n = Math.floor(Math.random() * 9999999999);
        var o = Math.floor(Math.random() * 9999999999);
        var c = 'background:white;color:black;cursor:default;';
        var id = 'changer' + n + '';
        var onclick = "$('#replace_box" + n + "').slideDown();$('#black" + n + "').show();";
        var close = "$('#replace_box" + n + "').remove();$('#black" + n + "').remove();$('#highlight" + n + "').css({'background' : 'white', 'color':'black'});";
        var click = "$('.black').hide();$('#replace_box" + n + "').slideUp(900).delay(4000).remove();$('#highlight" + n + "').html('<span id=" + id + " style=" + c + "></span>');"
        return '<div id="black' + n + '" class="black"></div><span id="highlight' + n + '" class="r" style="background: yellow;color: black;cursor:pointer;position:relative;" onclick="' + onclick + '">' + hi + '<div id="replace_box' + n + '" class="box" style="position:absolute;top:77px;left:116px;"><div style="position:relative;"><div class="close" onclick="' + close + '">Close</div>Replace <b>' + hi + '</b> with <input id="input' + n + '" autocomplete="off"/><br><br><button id="buttons' + n + '" onclick="' + click + '">Replace!</button><div class="chat-bubble-arrow"></div><div class="chat-bubble-arrow-border"></div></div></div></span>';
    });
    return false;
});
$('#replace').submit(function() {
    findAndReplace(document.getElementById('fText').value, function() {
        var mon = $('#rText').val();
        return '<span class="highlight2" style="background: white;color: black;">' + mon + '</span>';
    });
    return false;
});

哦,我正在使用快捷插件使查找框显示在CTRL+F(取代浏览器查找系统)

注意在Javascript中这是Find: 的主代码
 $('#find').submit(function() {
        findAndReplace(document.getElementById('fText').value, function(hi){
        var n = Math.floor(Math.random() * 9999999999); 
        var o = Math.floor(Math.random() * 9999999999); 
        var c = 'background:white;color:black;cursor:default;';
        var id = 'changer'+n+'';
        var onclick = "$('#replace_box"+n+"').slideDown();$('#black"+n+"').show();";
        var close = "$('#replace_box"+n+"').remove();$('#black"+n+"').remove();$('#highlight"+n+"').css({'background' : 'white', 'color':'black'});";
        var click = "$('.black').hide();$('#replace_box"+n+"').slideUp(900).delay(4000).remove();$('#highlight"+n+"').html('<span id="+id+" style="+c+"></span>');"
        return '<div id="black'+n+'" class="black"></div><span id="highlight'+n+'" class="r" style="background: yellow;color: black;cursor:pointer;position:relative;" onclick="'+onclick+'">' + hi + '<div id="replace_box'+n+'" class="box" style="position:absolute;top:77px;left:116px;"><div style="position:relative;"><div class="close" onclick="'+close+'">Close</div>Replace <b>'+hi+'</b> with <input id="input'+n+'" autocomplete="off"/><br><br><button id="buttons'+n+'" onclick="'+click+'">Replace!</button><div class="chat-bubble-arrow"></div><div class="chat-bubble-arrow-border"></div></div></div></span>';
       });
       return false;
   });
这是我的HTML:
<div id="finder">  
<div style="position:relative;">
<form id="find" style="padding-bottom:10px;">
  <button class="close2" id="wa" onclick="$('#finder').animate({'bottom' : '-150px'}, 100);">X</button>
  <input id="fText" placeholder="Enter Text you wanna replace here!" autocomplete="off" style="width:210px;"/>
  <button>Find!</button>
</form>
<form id="replace">
  <input id="rText" placeholder="Replace all of the found items." autocomplete="off" style="width:210px;"/>
  <button>Replace All</button>
</form>
</div>
</div>
<div class="black"></div>
<div id="show"></div><div id="test"></div>
<div id="boxes"></div>

我也有CSS,但我不会在这里发布。

My Example Is here:

查找/替换

真的希望有人能理解我的编码方式,可以帮助。

这是当你点击高亮显示的单词时出现的"Replace"按钮的代码:

<button id="buttons7430059098" onclick="$('.black').hide();$('#replace_box7430059098').slideUp(900).delay(4000).remove();$('#highlight7430059098').html('&lt;span id=changer7430059098 style=background:white;color:black;cursor:default;&gt;&lt;/span&gt;');">Replace!</button>

它所做的是将突出显示的元素的内容替换为空span。您需要实际地将用户在输入字段($("#input7430059098").val())中键入的任何内容放入该span中。

我还将创建一个可以从按钮的单击处理程序调用的函数来执行替换,因为在单击处理程序中似乎已经有很多代码,但这只是我。

编辑:

试试这个:

var click = "$('.black').hide();$('#replace_box"+n+"').slideUp(900).delay(4000).remove();$('#highlight"+n+"').html('<span id="+id+" style="+c+">' + $('#input" + n + "').val() + '</span>');";