gpt4 book ai didi

Javascript 替换无效

转载 作者:行者123 更新时间:2023-11-30 06:58:38 26 4
gpt4 key购买 nike

这是 jQuery:

<script type="text/javascript">
$(document).ready(function(){
var relName;
$('.child').each(function() {
relName = $(this).attr('rel');
relName.replace('&','');
$(this).attr('rel', relName);
$(this).appendTo('#' + $(this).attr('rel'));
});
});
</script>

使用这个相关的 HTML:

<div rel="MadDogs&EnglishmenHandpaintedfigurines" id="Figurines" class="category section child">
<h3 class="categoryTitle">Figurines</h3>
</div>

但由于某种原因,替换没有任何效果!

最佳答案

replace 返回包含替换数据的字符串。所以你需要分配回你的变量。

relName = relName.replace('&','');

关于Javascript 替换无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7718851/

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