返回
首页
Cursor入门教程 - W3Cschool
Cursor入门教程
开始阅读
下载APP,阅读更畅快
教程说明:
全面的 Cursor 掌握指南
教程目录:
为什么放弃Github Copilot?
Tab功能的使用
你真的会用提示栏(Cmd K)功能了吗?
使用 Chat(Cmd L)功能解决通用问题
编程小白如何打造自己的导航网站
温馨提示
下载AI使用导航App,免费阅读超1000+编程语言教程
取消
确定
目录
为什么放弃Github Copilot?
Tab功能的使用
你真的会用提示栏(Cmd K)功能了吗?
使用 Chat(Cmd L)功能解决通用问题
编程小白如何打造自己的导航网站
关闭
MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }