gpt4 book ai didi

jquery - 更改搜索栏中每个单词的背景颜色

转载 作者:太空宇宙 更新时间:2023-11-04 10:32:21 25 4
gpt4 key购买 nike

我一直在尝试对 jQuery 中的每个单词进行处理并给它们一个彩色背景,我找到了一个解决方案,但它只适用于 html 内容,我想为搜索栏的输入着色。这是我发现的例子

HTML

some content
<div>another content
<input id="search" type="text" value="dsfdsfdsf sdf dsfsdfsfs">
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ac turpis
</p>
content in body

jQuery

//the main point here is you need to replace only the contents of the text node, not all the html parts

var colours = ['red', 'green', 'blue', 'cyan', 'magenta', 'yellow', 'gray'];
var lastC;

jQuery('*').contents().each(function () {
//not a text node or there is no content to replace
if (this.nodeType != 3 || !this.nodeValue.trim()) {
return;
}

//replace the value of the text node
$(this).replaceWith(this.nodeValue.replace(/\w+/g, function (part) {
var c = colours[Math.floor(Math.random() * colours.length)];
while (c == lastC) {
var c = colours[Math.floor(Math.random() * colours.length)];
}
lastC = c;
return '<span style="background-color: '+c+';">' + part.split("").join("") + '</span>'
}))
});

我尝试将 jQuery('*') 更改为 jQuery('#search') 但没有成功。

实例 https://jsfiddle.net/7hs9mgLp/2/

我应该怎么做才能解决它?

最佳答案

事实上,它不能与文本输入元素一起使用,因为此函数获取content 以将其包含在span 元素中而不是value 元素的。

但我已通过在 background input 元素上应用随机 color 进行修复,使其适用于您的代码。

You can see it here

这是 JS 代码:

//the main point here is you need to replace only the contents of the text node, not all the html parts

var colours = ['red', 'green', 'blue', 'cyan', 'magenta', 'yellow', 'gray'];
var lastC;

jQuery('*').contents().each(function () {
//not a text node or there is no content to replace
// here is the part I've changed. I test what is the element we get
if ( $(this).is( "input" ) ) {
color = colours[Math.floor(Math.random() * colours.length)];
$(this).css('background-color',color);
}
else{
if (this.nodeType != 3 || !this.nodeValue.trim()) {
return;
}

//replace the value of the text node
$(this).replaceWith(this.nodeValue.replace(/\w+/g, function (part) {
var c = colours[Math.floor(Math.random() * colours.length)];
while (c == lastC) {
var c = colours[Math.floor(Math.random() * colours.length)];
}
lastC = c;
return '<span style="background-color: '+c+';">' + part.split("").join("") + '</span>'
}));
}
});

编辑

要为输入中的每个单词着色,这有点棘手,我不知道是否有“干净”的方法来做到这一点。

无论如何,这是我对这部分的建议

See this updated fiddle

我已经稍微更改了 HTML 结构来执行此操作,因为我想不出其他方法来执行此操作。希望对您有所帮助。

这是更新的 JS 部分:

if ( $(this).is( "input" ) ) {
val = $(this).val().split(" ");
$( val ).each(function(i,v ) {
color = colours[Math.floor(Math.random() * colours.length)];
$("label").append("<span class='absolute' style='background-color: "+color+"; '>"+v+"</span>");
$('#search').css('position','relative');
$(this).val('');
$('label').css({'position' : 'absolute', 'left' : '2px', 'top' : '2px' });
});
}

关于jquery - 更改搜索栏中每个单词的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36407194/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com