摘要:
1.substring 用于提取字符串中介于两个指定下标之间的字符,返回值包括开始处的字符,但是不包括结束处的字符。 语法: string.substring(from,to) var str = "hello,world"; var n = str.substring(3);//如果有两个值,那么 阅读全文
摘要:
Array 对象属性 阅读全文
摘要:
1.代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>随机点名器</title> <link rel="icon" href="http://caiyanli.top/images/cai.gif"> < 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> .clock{ width: 600px; height: 600px; margin: 50px auto; background: url(./image 阅读全文
摘要:
1.取整的方法 Math.floor( ) Math 对象的方法--取比当前数值小的最大整数(下取整)。 Math.ceil( ) Math对象的方法--取比当前数值大的最小整数(上取整)。 Math.round( ) Math对象的方法--四舍五入。 toFixed( ) Number对象的方法- 阅读全文
摘要:
1.原型: 在JavaScript 中,对象被表现为prototype 。 原型其实一直存在于我们接触过的任何一个对象。 2. Tip:在函数对象中也存在__proto__属性,但是查看函数对象的原型还是要使用prototype 。 JavaScript 在创建对象的时候,无论是普通对象还是函数对象 阅读全文