Try title.replace(/\s/g , "-")
instead.
(请尝试使用title.replace(/\s/g , "-")
。)
( /\s/
is the regex escape for whitespace). (( /\s/
是空白的正则表达式转义符)。)
Also, do:
(另外,请执行以下操作:)
title = title.replace(/s/g , "-");
var html = "<div>" + title + "</div>";
// ...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…