<div>This-is-text-1</div>
给定代码行
var value = $('div').text();
我需要将连字符替换为-
空白。我需要的输出是“This is text 1”如何在这里使用 jQuery 替换功能?
<div>This-is-text-1</div>
给定代码行
var value = $('div').text();
我需要将连字符替换为-
空白。我需要的输出是“This is text 1”如何在这里使用 jQuery 替换功能?
使用正则表达式替换所有出现的-
:
var value = $('div').text();
$('div').html(value.replace(/-/g, " "));
//--------------------------^---^-----g is used to replace all occurrences and
//------------------------------------" " put a space too to replace with
试试这个
$('div').text($('div').text().replace(/-/g, "");
试试这个-
$('div').html().replace("-"," ");