第十一章 使用Math對(duì)象
1. 使用Math對(duì)象
<script language=javascript> </script> <form name=form1> 圓的半徑:<input type=text name=rad><br> 圓的面積:<input type=text name=area><br> <input type=button name=button1 value=計(jì)算圓的面積 onclick=document.form1.area.value=document.form1.rad.value*document. form1.rad.value*Math.PI> </form>
2.生成隨機(jī)數(shù)
<script> array1=new Array( "這是第1句", "這是第2句", "這是第3句", "這是第4句", "這是第5句", "這是第6句") RandomNo=Math.floor(array1.length*Math.random()) document.write("隨機(jī)輸出某一句"+"<br>"+array1[RandomNo]) </script>
3.使用平方根
<form name=form1> value:<input type=text name=va1><br> 平方根<input type=text name=sqrt><br> <input type=button name=button1 value=計(jì)算平方根 onclick="document.form1.sqrt.value=Math.sqrt(document.form1.va1.value)"> </form>
4.數(shù)字的舍入
<form name=form1> 輸入<input type=text name=val><br> 舍入的結(jié)果<input type=text name=round><br> <input type=button name=button1 value=計(jì)算結(jié)果 onclick=document.form1.round.value=Math.round(document.form1.val.value)> </form>
5.乘方運(yùn)算
<form name=form1> 底數(shù)<input type=text name=val><br> 指數(shù)<input type=text name=power><br> 冪<input type=text name=result><br> <input type=button name=button1 value=計(jì)算結(jié)果 onclick="document.form1.result.value=Math.pow (document.form1.val.value,document.form1.power.value)"> </form>
6.發(fā)現(xiàn)最小值和最大值
<form name=form1> 數(shù)字1<input type=text name=val1><br> 數(shù)字2<input type=text name=val2><br> 最小值<input type=text name=min><br> 最大值<input type=text name=max><br> 數(shù)字1<input type=button value=計(jì)算 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)"> </form>
第十二章 使用表單
1.使用文本框
<form name=form1> <input type=text value="information ,please"name=text1> </form> <script> document.write("表單text1類(lèi)型是: "+document.form1.text1.type+"<br>") document.write("表單text1名稱(chēng)是: "+document.form1.text1.name+"<br>") document.write("表單text1值是: "+document.form1.text1.value+"<br>") document.write("表單text1大小是: "+document.form1.text1.size+"<br>") </script>
<form name=form1> <input type=text name=text1 value=click here onfocus=document.form1.text1.select()> </form>
2.使用密碼框
<form name=form1> <input type=password name=pw1 value=daylight> </form> <script> document.write("表單pw1的類(lèi)型:"+document.form1.pw1.type+"<br>") document.write("表單pw1的名稱(chēng):"+document.form1.pw1.name+"<br>") document.write("表單pw1的值:"+document.form1.pw1.value+"<br>") document.write("表單pw1的大小:"+document.form1.pw1.size+"<br>") </script>
3.使用隱藏字段
<form name=form1> <input type=hidden name=hid1 value=piece of eight> </form> <script> document.write("表單hid1的類(lèi)型:"+document.form1.hid1.type+"<br>") document.write("表單hid1的名稱(chēng):"+document.form1.hid1.name+"<br>") document.write("表單hid1的值:"+document.form1.hid1.value+"<br>") </script>
4.使用文本區(qū)域框
<form name=form1> <textarea name=ta1>how many grains of sand are there in the sahara desert?</textarea> </form> <script> document.write("表單ta1的類(lèi)型:"+document.form1.ta1.type+"<br>") document.write("表單ta1的名稱(chēng):"+document.form1.ta1.name+"<br>") document.write("表單ta1的值:"+document.form1.ta1.value+"<br>") document.write("表單ta1的橫向?qū)挾?"+document.form1.ta1.cols+"<br>") document.write("表單ta1的縱向?qū)挾?"+document.form1.rows.value+"<br>") </script>
<form name=form1> <textarea name=ta1 rows=4 onfocus="document.form1.ta1.select()"> how many grains of sand are there in the sahara desert?</textarea> </form>
5.使用按鈕
<form name=form1> <input type=button name=button1 value=標(biāo)準(zhǔn)按鈕> </form> <script> document.write("表單button1的類(lèi)型:"+document.form1.button1.type+"<br>") document.write("表單button1的名稱(chēng):"+document.form1.button1.name+"<br>") document.write("表單button1的值:"+document.form1.button1.value+"<br>") </script>
<form name=form1> <input type=text name=text1 size=45><br> <input type=button name=button1 value=panic button onclick="document.form1.text1.value='sittle down,count to 10 and take a deep breath'"> </form>
出處:藍(lán)色理想
責(zé)任編輯:moby
上一頁(yè) 事半功倍之Javascript [6] 下一頁(yè) 事半功倍之Javascript [8]
◎進(jìn)入論壇網(wǎng)頁(yè)制作、網(wǎng)站綜合版塊參加討論
|