js 定時器操作 資料物件操作

2022-05-30 01:12:10 字數 4144 閱讀 9749

var id;

function start()

}function foo()

function end()

script>

head>

startbutton>

endbutton>

// var arrname=[11,2,33];

// console.log(arrname);

var

arrname=new array('a','v','b');//建立陣列物件

console.log(arrname);//(3) ["a", "v", "b"]

console.log(typeof arrname)//返回object型別

console.log(typeof a)//返回string型別

//// var dd=new array('周一','周二');//建立陣列物件

// console.log(dd)//(3) ["a", "v", "b"]

//// var cc=new date();//建立時間物件

// console.log(cc)//tue aug 08 2017 14:09:03 gmt+0800 (中國標準時間)

//// var bb=new string('hello world')//建立字串物件

// console.log(bb)

// var aa=new number.max_value;//利用數字物件獲取可表示的最大數

// console.log(aa)

var

a='hello ';

console.log(a.length)//5 獲取字元從的長度

console.log(typeof a);

console.log(a.tolowercase()) ;//hello 把字串轉為小寫

console.log(a.touppercase());//hello 轉為大寫

// alert(a.trim())

console.log(a.trim())//hello去掉字串兩邊的空格,也可以去掉兩邊換行符

//字串查詢方法

//根據索引查字元

console.log(a.charat(4))//填寫索引值,獲取字元

console.log(a.indexof('o',1))//2個意思,1當乙個引數時,根據字元,找索引值

// 2.是2個引數時第乙個值是要找的字串,第二個是

//從指定的索引值開始找,找到就返回索引值,

//找不到就-1,從左向右找

var

a1='hellopipp'

console.log(a1.lastindexof('p'))//在字串a1裡查詢字元p,

//如果有多個相同的字元,就返回最後乙個字元的索引,

//沒有匹配,就返回-1; 從右向左找

var

a2='hello world gu!'

console.log(a2.match('world'))//["world", index: 7, input: "hello world!"]

console.log(a2.search('world'))//6 返回匹配到第乙個字元的索引值

//截斷字串,取字串一部分

console.log(a2.substr(2,4));//llo索引4的位置也取值

console.log(a2.substring(2,4));//ll 索引4的位置不取,顧頭不顧尾

console.log(a2.replace('ll','f'))//hefo world gu!

//替換,舊的再前,新的在後

console.log(a2.concat('rr'))//hello world gu!rr,字串拼接

console.log(a2.split(' '))//(3) ["hello", "world", "gu!"],按照空格分割,得到陣列

console.log(a2.split(' ')[1])//world,按照索引取值

script

>

//        var arrname=[11,2,33];

// console.log(arrname);

var

arrname=new array('a','v','b');//建立陣列物件

console.log(arrname);//(3) ["a", "v", "b"]

console.log(typeof arrname)//返回object型別

console.log(typeof a)//返回string型別

//// var dd=new array('周一','周二');//建立陣列物件

// console.log(dd)//(3) ["a", "v", "b"]

//// var cc=new date();//建立時間物件

// console.log(cc)//tue aug 08 2017 14:09:03 gmt+0800 (中國標準時間)

//// var bb=new string('hello world')//建立字串物件

// console.log(bb)

// var aa=new number.max_value;//利用數字物件獲取可表示的最大數

// console.log(aa)

var

a='hello ';

console.log(a.length)//5 獲取字元從的長度

console.log(typeof a);

console.log(a.tolowercase()) ;//hello 把字串轉為小寫

console.log(a.touppercase());//hello 轉為大寫

// alert(a.trim())

console.log(a.trim())//hello去掉字串兩邊的空格,也可以去掉兩邊換行符

//字串查詢方法

//根據索引查字元

console.log(a.charat(4))//填寫索引值,獲取字元

console.log(a.indexof('o',1))//2個意思,1當乙個引數時,根據字元,找索引值

// 2.是2個引數時第乙個值是要找的字串,第二個是

//從指定的索引值開始找,找到就返回索引值,

//找不到就-1,從左向右找

var

a1='hellopipp'

console.log(a1.lastindexof('p'))//在字串a1裡查詢字元p,

//如果有多個相同的字元,就返回最後乙個字元的索引,

//沒有匹配,就返回-1; 從右向左找

var

a2='hello world gu!'

console.log(a2.match('world'))//["world", index: 7, input: "hello world!"]

console.log(a2.search('world'))//6 返回匹配到第乙個字元的索引值

//截斷字串,取字串一部分

console.log(a2.substr(2,4));//llo索引4的位置也取值

console.log(a2.substring(2,4));//ll 索引4的位置不取,顧頭不顧尾

console.log(a2.replace('ll','f'))//hefo world gu!

//替換,舊的再前,新的在後

console.log(a2.concat('rr'))//hello world gu!rr,字串拼接

console.log(a2.split(' '))//(3) ["hello", "world", "gu!"],按照空格分割,得到陣列

console.log(a2.split(' ')[1])//world,按照索引取值

script

>

MySQL基本操作 資料操作

刪除資料 更新字段 1.插入指定字段值 insert into 表名 字段列表 values 對應字段值列表 2.向表中所有字段插入資料 insert into 表名 values 按表結構寫對應資料 insert into my teacher values liwei 20 1.查詢表中全部資料...

Excel操作資料1

生成excel的方法為呼叫本地office com元件,操作excel。新建專案後,新增對應office版本的microsoft.office.interop.excel 的引用,如圖 1 1所示。新增microsoft.office.interop.excel引用 為方便起見,這裡以乙個示例程式說...

Python資料操作 資料清理

資料丟失在現實生活中是乙個問題。機器學習和資料探勘等領域由於資料缺失導致資料質量差,因此在模型 的準確性方面面臨嚴峻的問題。在這些領域,缺失值處理是使模型更加準確和有效的關鍵。現在來看看如何使用pandas庫處理缺失值 如na或nan 使用pandas庫處理資料中的缺失值 import pandas...