摘要: 1 document属性:title URL bgColor fgColor 使用document 的title(标题) 属性 alert(document.title); document.title="改变后的标题"; 使... 阅读全文
posted @ 2015-09-05 20:19 相约梦想 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 一、函数声明function add(a, b) {return a + b;}var sum = add(1 , 3);alert(sum);function add(){return arguments[0]+arguments[1];}alert(add(2,3));// 局部内部定义的,外部... 阅读全文
posted @ 2015-09-05 20:16 相约梦想 阅读(109) 评论(0) 推荐(0) 编辑