<script type="text/javascript">
function test1(){
window.alert("你点击了button");
}
function test2(){
//定义两个变量并且赋值
var num1=2;
var num2=3;
var res=num1+num2;
window.alert("num1+num2="+res);
}
function test3(){
var name="hello";
window.alert("name的类型是:"+typeof name);
}
function test4(){
var a="hello";
var A="world";
window.alert(a+"--"+A);
}
function test5(){
var n1=0x8a;
var n2=0010123;
var n3=1234;
alert(n2);