您好我正在使用js,在创建自动列表时,我使用
var str = "<li>...content...</li>";
str.repeat(prompt('How Many Items'))
并显示如下
<li>...content...</li><li>...content...</li><li>...content...</li><li>...content...</li><li>...content...</li>
我希望像这样显示:
<li>...content...</li>
<li>...content...</li>
<li>...content...</li>
<li>...content...</li>
<li>...content...</li>
这严格地在代码视图中,因为它是一段代码,一旦定义了重复的次数就会生成它。
答案 0 :(得分:1)
在最后添加换行符。
改变这个:
The following untracked working tree files would be overwritten by checkout: <the name of the file I tried to remove>
对此:
var str = "<li>...content...</li>";