摘要:
js中函数也是对象。 函数的声明: 1、function 函数名(参数1,参数2,....){ 执行体 } function test1(i,j){ alert(i+j) } 2、var 函数名 = new Function("参数1","参数2",......,"执行体" ); var test0 阅读全文
摘要:
超级超级简单的计算器一个。 HTML代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>简易计算器</title> <link rel="stylesheet" href="calculator.css"> <script 阅读全文