我正在嘗試爲我的文本區域創建查找/替換物件。我找到了,但我無法將替換代碼放在一起。查找並替換爲Textarea
我的搜索代碼:
function setSelectionRange(input, selectionStart, selectionEnd) {
input.focus();
input.setSelectionRange(selectionStart, selectionEnd);
}
function selectString(input, string) {
var match = new RegExp(string, "i").exec(input.value);
if (match) {
setSelectionRange(input, match.index, match.index + match[0].length);
}
}
我怎麼會讓如果可能的話替換功能?
此鏈接可能有所幫助:http://stackoverflow.com/questions/3365902/search-for-all-instances-of-a-string-inside-a-string – zdrsh
你的問題是什麼? – 2011-10-15 01:54:08
你不明白嗎?它,如果可能,我將如何製作替換功能? – Shawn31313