假設我有以下幾點:如何替換js中的文本?
var s = "This is a test of the battle system."
,我有一個數組:
var array = [
"is <b>a test</b>",
"of the <div style=\"color:red\">battle</div> system"
]
有一些功能或方式我可以使它這樣我可以處理字符串s使得輸出將是:
var p = "This is <b>a test</b> of the <div style=\"color:red\">battle</div> system."
基於數組中的任意元素?
請注意,數組元素應該按順序執行。因此,查看數組1中的第一個元素,找到字符串「s」中「替換」的正確位置。然後查看數組元素2,找到字符串「s」中「替換」的正確位置。
注意,字符串可以包含數字,括號和其他字符,如破折號(無<>雖然)
我不知道如何給出了錯誤的語法高亮這些錯誤不會馬上變得明顯。即使我不明白代碼,我仍然可以說出事情是錯的。 – elclanrs 2013-03-27 21:07:28