js学习 start,stop,speed,start,speed ,velocicty,start Try it function fun(){ var str = document.getElementById("p1").innerHTML; var num=0; ... ...
分类:
其他好文 时间:
2018-12-31 15:53:36
阅读次数:
178
首先将jsonp通过npm 安装引入js文件中,代码如下 ...
分类:
Web程序 时间:
2018-12-31 11:24:57
阅读次数:
201
1.indexof() indexOf()的用法:返回字符中indexof(string)中字串string在父串中首次出现的位置,从0开始,没有返回-1;方便判断和截取字符串!indexOf()定义和用法indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。语法stringOb ...
分类:
其他好文 时间:
2018-12-31 00:02:03
阅读次数:
178
Document 1.let 块作用域 const 常量,不能二次赋值 2.箭头函数 (参数)=>{逻辑代码} 参数为1时 参数=>{} 参数不为一时 ()=>{} 返回值为值类型 ()=>1 返回值为对象时 ()=>({a:a}) 其他情况 ()=>{} 箭头函数中的this跟包裹他的代码共享th... ...
分类:
编程语言 时间:
2018-12-29 13:49:21
阅读次数:
215
object Name{ def unapply(str:String)={ val pos = str.indexOf(" ") if(pos == -1)None else Some(str.substring(0,pos),str.substring(pos+1)) }} 样板类具有apply... ...
分类:
移动开发 时间:
2018-12-28 19:16:35
阅读次数:
216
1.cooks: 2请求头部: 1.js 2.vue 3.localStorage 有道词典 9 if (document. ... 详细X 9如果(document.cookie.length > 0) 10 { 11 var c_start =。。indexOf(c_name + " = ") ...
分类:
其他好文 时间:
2018-12-28 17:46:28
阅读次数:
242
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, just two one's ...
分类:
其他好文 时间:
2018-12-27 13:24:40
阅读次数:
159
function getCookie(cname) { let name = cname + "="; let ca = document.cookie.split(';'); for (let i = 0; i < ca.length; i++) { let c = ca[i].trim(); i ...
分类:
编程语言 时间:
2018-12-26 19:53:15
阅读次数:
167
1、String类的概述 * A:String类的概述 * 通过JDK提供的API,查看String类的说明 * 可以看到这样的两句话。 * a:字符串字面值"abc"也可以看成是一个字符串对象。 * b:字符串是常量,一旦被赋值,就不能被改变。 2、String类的构造方法 * A:常见构造方法 ...
分类:
编程语言 时间:
2018-12-26 10:32:08
阅读次数:
248