会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
大峡谷2222
博客园
首页
新随笔
联系
管理
订阅
2026年6月28日
node web服务器基本使用
摘要:
阅读全文
posted @ 2026-06-28 22:40 大峡谷2222
阅读(1)
评论(0)
推荐(0)
2026年6月22日
ajax基本用法
摘要: const xhr = new XMLHttpRequest() xhr.open('GET', 'http://localhost:3000/class/') xhr.send() xhr.onload = function () { console.log(xhr.responseText) }
阅读全文
posted @ 2026-06-22 16:03 大峡谷2222
阅读(2)
评论(0)
推荐(0)
2026年6月21日
switch case用法
摘要: let aaa = 5555 //特别注意break switch (aaa) { //key为变量的引用 case 5555: // 变量值 //执行逻辑 console.log('执行逻辑1') console.log(tt) break case 6666: // 变量值 //执行逻辑 con
阅读全文
posted @ 2026-06-21 17:12 大峡谷2222
阅读(4)
评论(0)
推荐(0)