我不知道为什么,但我无法在博主上保留一句话。
答案 0 :(得分:2)
脚本没有任何问题。你只需要做一些改变。
有两种选择:
首先:在<
循环中使用<
代替for
,
例如:
for(i=0; i < functions.length; i++) {
//rest of the code here
}
第二:将您的代码包装在// <![CDATA[ //code here ]]>
内
例如:
// <![CDATA[
for(i=0; i < functions.length; i++) {
//rest of the code here
}
// ]]>
请尝试这些并确保在结果有效的情况下发布结果。