2017年2月15日
摘要: var a=6; var b=a++; 此时a的值是7;a++的值是7;b的值是6; var c=8; var d c; 此时c的值是7;--c的值是6;d的值是7; 阅读全文
posted @ 2017-02-15 20:30 2015熊出没 阅读(197) 评论(0) 推荐(0) 编辑
摘要: onload事件属性是页面的图片文字等全部加载完毕后执行的事件 window.onload=fun1;function fun1(){ document.getElementsByTagName("body")[0].onclick=function(){ document.write("系好安全带 阅读全文
posted @ 2017-02-15 16:07 2015熊出没 阅读(248) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" Content="text/html; charset=utf-8" /><title>javascript</title><style type="text/css">body{f 阅读全文
posted @ 2017-02-15 11:11 2015熊出没 阅读(194) 评论(0) 推荐(0) 编辑