我想将存储在一个变量中的字符串添加到特定单词之间的现有字符串中。
var String = '<!DOCTYPE html><html><head> <title>Title</title> <style></style></head><body> <p>Hello</p></body></html>'
var string_to_add = 'p{background-color: red;}'
现在我希望输出为:
<!DOCTYPE html><html><head> <title>Title</title> <style>p{background-color: red;}</style></head><body> <p>Hello</p></body></html>
答案 0 :(得分:0)
你可以这样做:
String.replace("<style>", "<style>" + string_to_add);