simple code. function splice(str, index, del, element) { return str.substring(0, index) + element + str.substring(index + del); }.
確定! 回上一頁