分类: 系统运维
2008-04-22 13:50:49
第九章 使用字符串
1.使用字符串对象
mystring="gdgdfgfddddaaaaaaaaaaaabbbbbbbbbbbbbbbbbvbhg.
"
document.write(mystring)
document.write(mystring.bold())
document.write(mystring.toUpperCase())
2.使用子字符串
str1="fdsf 1111 gfdgfd dfdsf cccc dddd.
"
document.write(str1)
document.write(str1.substring(0,13)+"
")
document.write(str1.substr (20,11)+"
")
3.连接字符串
str1="may you find"
str2="peace,happiness and prosperity.
"
document.write(str1+"
")
document.write(str2)
document.write(str1.concat(str2))
document.write(str1+=str2)
4.格式化字符串变量
str1="peace,happiness and prosperity.
"
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))
5.创建锚和链接
str1="this is the bigginning of the page.
"
str2="….
"
str3="this is the end of the page .
"
str4="link to the start
"
str5="link to the end
"
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"))
6.确定字符串长度
str1="this is the bigginning of the page."
document.write(str1+"
")
document.write( "字符串的长度是:"+str1.length)
document.write("字符串全部大写是;"+str1.toUpperCase())
document.write("字符串全部小写是;"+str1.toLowerCase())
7.在字符串内搜索
str1="this is the end of the line.
"
document.write(str1)
document.write("字符end在字符串的位置是"+str1.search("end"))
document.write("字符dog在字符串的位置是"+str1.search("dog"))
8.定位字符串中的字符
str1="spring is a time for flowers and trees and baby
bunnles
"
document.write(str1)
document.write("the index for the second word ‘and'
is"+str1.indexOf("and",30))
documednt.write("the last index of the word ‘and' is
"+str1.lastIndexOf("and"))
9.替换字符串中的文本
str1="spring is a time for flowers and trees and baby
bunnles
"
document.write(str1)
document .write(str1.replace("and",","))
10.字符串分离
str1="spring is a time for flowers and trees and baby
bunnles
"
document.write(str1)
str1array=str1.split(" ")
document.write(str1array[0]+"
")
document.write(str1array[1]+"
")
document.write(str1array[2]+"
")
document.write(str1array[3]+"
")
第十章 使用日期和时间
1.使用Date对象
cdate=new Date("august 2,1989 12:30:00")
document.write(cdate)
2.显示当地时间和日期
cdate=new Date()
document.write("当前时间是:"+cdate.toGMTString()+"
")
document.write("日期和时间是:"+cdate.toLocaleString())
3.获得时间和日期值
cdate=new Date()
document.write("显示当前的星期"+cdate.getDay()+"
")
document.write("显示当前的月份"+cdate.getMonth()+"
")
document.write("显示当前的日期"+cdate.getDay()+"
")
document.write("显示当前的年份"+cdate.getYear()+"
")
document.write("显示当前的小时"+cdate.getHours()+"
")
document.write("显示当前的分钟"+cdate.getMinutes()+"
")
document.write("显示当前的秒"+cdate.getSeconds()+"
")
4.设置时间和日期值
cdate=new Date("December 25,1984")
document.write("显示日期"+cdate+"
")
document.write("设置月份"+cdate.setMonth(10)+"
")
document.write("设置日期"+cdate.setDate(23)+"
")
document.write("设置年份"+cdate.setYear(2000)+"
")
document.write("设置小时"+cdate.setHours(13)+"
");
document.write("设置分钟"+cdate.setMinutes(47)+"
");
document.write("设置秒"+cdate.setSeconds(23)+"
");
document.write("显示设置后的日期和时间"+cdate);
第十一章 使用Math对象
1.
使用Math对象
圆的半径:
圆的面积:
计算圆的面积
onclick=document.form1.area.value=document.form1.rad.value*document.
form1.rad.value*Math.PI>
2.生成随机数
array1=new Array(
"这是第1句",
"这是第2句",
"这是第3句",
"这是第4句",
"这是第5句",
"这是第6句")
RandomNo=Math.floor(array1.length*Math.random())
document.write("随机输出某一句"+"
"+array1[RandomNo])
3.使用平方根
value:
平方根
计算平方根
onclick="document.form1.sqrt.value=Math.sqrt(document.form1.va1.value)">
4.数字的舍入
输入
舍入的结果
计算结果
onclick=document.form1.round.value=Math.round(document.form1.val.value)>
5.乘方运算
底数
指数
幂
计算结果 onclick="document.form1.result.value=Math.pow
(document.form1.val.value,document.form1.power.value)">
6.发现最小值和最大值
数字1
数字2
最小值
最大值
数字1计算 onclick="document.form1.min.value=Math.min
(document.form1.val1.value,document.form1.val2.value);document.form1.
max.value=
Math.max(document.form1.val1.value,document.form1.val2.value)">