第九章 使用字符串
1.使用字符串對象
<script> mystring="gdgdfgfddddaaaaaaaaaaaabbbbbbbbbbbbbbbbbvbhg.<br>" document.write(mystring) document.write(mystring.bold()) document.write(mystring.toUpperCase()) </script>
2.使用子字符串
<script> str1="fdsf 1111 gfdgfd dfdsf cccc dddd.<br>" document.write(str1) document.write(str1.substring(0,13)+"<br>") document.write(str1.substr (20,11)+"<br>") </script>
3.連接字符串
<script> str1="may you find" str2="peace,happiness and prosperity.<br>" document.write(str1+"<br>") document.write(str2) document.write(str1.concat(str2)) document.write(str1+=str2) </script>
4.格式化字符串變量
<script> str1="peace,happiness and prosperity.<br>" document.write(str1) document.write(str1.big()) document.write(str1.small()) document.write(str1.bold()) document.write(str1.italics()) document.write(str1.strike()) document.write(str1.fontsize(6)) document.write(str1.fontcolor(green)) </script>
5.創(chuàng)建錨和鏈接
<script> str1="this is the bigginning of the page.<br>" str2="….<br>" str3="this is the end of the page .<br>" str4="link to the start<br>" str5="link to the end<br>" document.write(str1.anchor("start")) for(i=0;i<10;i++) document.write(str2); document.write(str3.anchor("end")) document.write(str4.link("#start")) document.write(str5.link("#end")) </script>
6.確定字符串長度
<script> str1="this is the bigginning of the page." document.write(str1+"<br>") document.write( "字符串的長度是:"+str1.length) document.write("字符串全部大寫是;"+str1.toUpperCase()) document.write("字符串全部小寫是;"+str1.toLowerCase()) </script>
7.在字符串內(nèi)搜索
<script> str1="this is the end of the line.<br>" document.write(str1) document.write("字符end在字符串的位置是"+str1.search("end")) document.write("字符dog在字符串的位置是"+str1.search("dog")) </script>
8.定位字符串中的字符
<script> str1="spring is a time for flowers and trees and baby bunnles<br>" document.write(str1) document.write("the index for the second word ‘a(chǎn)nd' is"+str1.indexOf("and",30)) documednt.write("the last index of the word ‘a(chǎn)nd' is "+str1.lastIndexOf("and")) </script>
9.替換字符串中的文本
<script> str1="spring is a time for flowers and trees and baby bunnles<br>" document.write(str1) document .write(str1.replace("and",",")) </script>
10.字符串分離
<script> str1="spring is a time for flowers and trees and baby bunnles<br>" document.write(str1) str1array=str1.split(" ") document.write(str1array[0]+"<br>") document.write(str1array[1]+"<br>") document.write(str1array[2]+"<br>") document.write(str1array[3]+"<br>") </script>
第十章 使用日期和時間
1.使用Date對象
<script> cdate=new Date("august 2,1989 12:30:00") document.write(cdate) </script>
2.顯示當(dāng)?shù)貢r間和日期
<script> cdate=new Date() document.write("當(dāng)前時間是:"+cdate.toGMTString()+"<br>") document.write("日期和時間是:"+cdate.toLocaleString()) </script>
3.獲得時間和日期值
<script> cdate=new Date() document.write("顯示當(dāng)前的星期"+cdate.getDay()+"<br>") document.write("顯示當(dāng)前的月份"+cdate.getMonth()+"<br>") document.write("顯示當(dāng)前的日期"+cdate.getDay()+"<br>") document.write("顯示當(dāng)前的年份"+cdate.getYear()+"<br>") document.write("顯示當(dāng)前的小時"+cdate.getHours()+"<br>") document.write("顯示當(dāng)前的分鐘"+cdate.getMinutes()+"<br>") document.write("顯示當(dāng)前的秒"+cdate.getSeconds()+"<br>") </script>
4.設(shè)置時間和日期值
<script language=javascript> cdate=new Date("December 25,1984") document.write("顯示日期"+cdate+"<br>") document.write("設(shè)置月份"+cdate.setMonth(10)+"<br>") document.write("設(shè)置日期"+cdate.setDate(23)+"<br>") document.write("設(shè)置年份"+cdate.setYear(2000)+"<br>") document.write("設(shè)置小時"+cdate.setHours(13)+"<br>"); document.write("設(shè)置分鐘"+cdate.setMinutes(47)+"<br>"); document.write("設(shè)置秒"+cdate.setSeconds(23)+"<br>"); document.write("顯示設(shè)置后的日期和時間"+cdate); </script>
出處:藍(lán)色理想
責(zé)任編輯:moby
上一頁 事半功倍之Javascript [5] 下一頁 事半功倍之Javascript [7]
◎進(jìn)入論壇網(wǎng)頁制作、網(wǎng)站綜合版塊參加討論
|