gpt4 book ai didi

javascript - 通过简单脚本从元素中拆分特定文本

转载 作者:行者123 更新时间:2023-11-28 05:19:37 25 4
gpt4 key购买 nike

尝试从元素中拆分特定文本。给定 js 它的工作原理,如何使这个 js 简短/简单?

元素 html 示例:

<div id="ReviewBox">
<span>(By:) Hello</span>

<div id="ReviewBox">
<span>By: Goodbye</span>
</div>

</div>

JS:

$('#ReviewBox span:contains("By:")').each(function(){
$(this).html($(this).html().split("(").join(""));
$(this).html($(this).html().split(")").join(""));
});

请 Jsfiddle: http://jsfiddle.net/xSphc/60/
如何使这个 js 简短/简单?

最佳答案

您可以使用 .html(function) , 你也应该使用 .replace()使用正则表达式删除 ()

$('#ReviewBox span:contains("By:")').html(function(_, html) {
return html.replace(/[/(\)]/g, '');
});

$('#ReviewBox span:contains("By:")').html(function(_, html) {
return html.replace(/[/(\)]/g, '');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="ReviewBox">
<span>(By:) Hello</span>
</div>

Fiddle

关于javascript - 通过简单脚本从元素中拆分特定文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40416880/

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