上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
摘要: Events模块 在Node.js中,很多对象都会发出事件。比如,fs.readStream打开文件时会发出一个事件。所有发出事件的对象都是events.EventEmitter的实例,可以通过require("events");获得event模块。 util 包介绍: node.js中的util核 阅读全文
posted @ 2017-09-14 08:15 haveProgress 阅读(124) 评论(0) 推荐(0) 编辑
摘要: E:\cordova>cordova create hello com.example.hello HelloWorldCreating a new cordova project.Error: Uncaught, unspecified "error" event. ( Error from Co 阅读全文
posted @ 2017-09-01 13:14 haveProgress 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: ^(\d)$就是0-9的任意一个数字,^表示以...开头,\d表示0-9的数字,$表示以...结尾, 阅读全文
posted @ 2017-08-19 14:23 haveProgress 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1.先安装 npm install -g cordova@6.0.0 cordova -v查看版本 报了很多奇奇怪怪的错误,cordova必须下载6.0.0,才能创建 2.创建项目 cordova create test com.example.test 其中第一个位置的test是指你的项目名,第二 阅读全文
posted @ 2017-08-14 12:04 haveProgress 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 添加class function AddNewClassName(){ var myObj = document.getElementById("test"); myObj.className += " fontCSS";//前面的这个空格很重要,独立思考,努力探寻,发现问题,解决问题! //许多问 阅读全文
posted @ 2017-07-20 14:21 haveProgress 阅读(108) 评论(0) 推荐(0) 编辑
摘要: window.onload=function () { window.document.addEventListener("keydown",function (event) { if(event.keyCode == 13){ alert('你按下了Enter'); } })} 阅读全文
posted @ 2017-07-14 00:15 haveProgress 阅读(105) 评论(0) 推荐(0) 编辑
摘要: JS如何获取指定DIV下的子元素LI值 JS怎么获取当前点击的子元素的下标 var child = document.getElementsByClassName("child"); for (var i = 0; i < child.length; i++) { var a = child[i]; 阅读全文
posted @ 2017-07-11 10:18 haveProgress 阅读(141) 评论(0) 推荐(0) 编辑
摘要: $(function () { $.ajax({ url:"http://123.45.678.910:9096/tpcmf/demo.php", type:"get", dataType:"json", success:function (data) { console.log(data.data 阅读全文
posted @ 2017-06-28 16:16 haveProgress 阅读(2574) 评论(0) 推荐(0) 编辑
摘要: rd/s/q 盘符:\某个文件夹 (强制删除文件文件夹和文件夹内所有文件) del/f/s/q 盘符:\文件名 (强制删除文件,文件名必须加文件后缀名) http://www.cnblogs.com/sinlang5778/articles/2244694.html 阅读全文
posted @ 2017-06-22 22:16 haveProgress 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 在项目中学习 阅读全文
posted @ 2017-06-15 17:10 haveProgress 阅读(76) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页