deeply love javascript and jquery
網誌存檔
▼
2008
(15)
►
9月
(3)
►
8月
(7)
▼
6月
(5)
string method
getElementById
math methods
alert
variable , constant, function
關於我自己
彼得潘
App程式設計入門 iPhone . iPad 第二版 2012.2 App程式設計入門 iPhone . iPad 第一版 2010.11
檢視我的完整簡介
2008年6月12日 星期四
string method
indexOf()
find the pattern in the string
ex:
"abcdef".indexof("bc");
getElementById
getElementById
get html element
ex:
html element:
input type="text", id="test", name="abc"
javascript:
document.getElementById("test").value
access data from value
math methods
NaN:
not a number
parseInt():
convert test to integer
ex:
parseInt("1");
parseFloat()
isNaN():
ex:
var a=3;
isNaN(a);
toFixed():
ex:
a=3.333;
a.toFixed(2);
---> a=3.33
alert
show an alert box:
ex:
alert("hello");
variable , constant, function
variable:
ex:
var test=300;
constant:
ex:
const TEST= 300;
function:
ex:
function test() {
}
call two methods:
ex:
<body onload ="test(); test2();">
較新的文章
首頁
訂閱:
文章 (Atom)