学堂在线刷课

该脚本可以完成学堂在线课程中的作业,视频以及图文

< Feedback on 学堂在线刷课

Question/comment

§
Posted: 31.03.2025

以下代码会使得清空缓存后报错:Uncaught SyntaxError: Unexpected end of JSON input,导致无法收集答案

            $('.clear').click(function () {
                localStorage.setItem('anwers', '')
            })

更改为:

            $('.clear').click(function () {
                localStorage.setItem('anwers', '[]')
            })

或:

            $('.clear').click(function () {
                localStorage.setItem('anwers', 'null')
            })

即可正常使用

Post reply

Sign in to post a reply.