无法在 Blogger 上保存模板

Cannot save template on Blogger

不知道为什么,我在blogger上无法保存一行

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

有两种选择:

第一种:&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
   }

// ]]>

请尝试这些,并确保 post 结果是否有效。