无法在Blogger上保存模板

时间:2015-07-12 17:55:17

标签: javascript for-loop blogger

我不知道为什么,但我无法在博主上保留一句话。

enter image description here

1 个答案:

答案 0 :(得分:2)

脚本没有任何问题。你只需要做一些改变。

有两种选择:

首先:&lt;循环中使用<代替for
例如:

for(i=0; i &lt; functions.length; i++) {
   //rest of the code here
}

第二:将您的代码包装在// <![CDATA[ //code here ]]>内 例如:

// <![CDATA[

   for(i=0; i < functions.length; i++) {
     //rest of the code here
   }

// ]]>

请尝试这些并确保在结果有效的情况下发布结果。