使用jQuery查找和替换括号之间的内容

时间:2010-04-19 10:59:27

标签: jquery replace preg-replace brackets

我需要使用jQuery在括号之间放置文本;一旦发生动作,内容将被更新,例如搜索范围。

结构是:

<h2>Placeholder Text Placeholder Text Placeholder Text ()</h2>

1 个答案:

答案 0 :(得分:2)

您可以使用indexOf方法:

text = $("h2").text();
pos1 = text.indexOf("(");
pos2 = text.indexOf(")");
newText = text.substring(0, pos1 + 1) + myText + text.substring(pos2);

以上假设在文本中可以找到一对且只有一对括号。