随笔分类 -  JavaScript

JavaScript开发中的源码分享
摘要:File srcFolder=new File("c:\\demo"); File destFolder=new File("d:\\test"); if(!destFolder.exists()){ destFolder.mkdir(); } File[] fileArray=srcFolder. 阅读全文
posted @ 2020-08-03 15:36 旮旯风行 阅读(156) 评论(0) 推荐(0)
摘要:// File srcFolder=new File("c:\\demo");// File destFolder=new File("d:\\test");// if(!destFolder.exists()){// destFolder.mkdir();// // }// File[] file 阅读全文
posted @ 2020-08-03 15:14 旮旯风行 阅读(82) 评论(0) 推荐(0)
摘要:JavaScript Cookies 转载自:http://www.w3school.com.cn/js/js_cookies.asp 什么是cookie? cookie 用来识别用户。 cookie 是存储于访问者的计算机中的变量。每当同一台计算机通过浏览器请求某个页面时,就会发送这个 cooki 阅读全文
posted @ 2020-07-10 11:01 旮旯风行 阅读(725) 评论(0) 推荐(0)