摘要:
1.通过ID名称来获取元素: document get element by id 'link' document.getElementById('link'); 事件:鼠标事件、键盘事件、系统事件、表单事件、自定义事件 例:onclick 鼠标点击事件 onmouseover 鼠标移入事件 onm 阅读全文
摘要:
一、字符输入流读取文本文件 ※Reader类的常用方法 方法名称 说明 int read() 从输入流中读取单个字符 int read(byte[] c) 从输入流中读取c .length长度的字符,保存到字节数组c中,返回实际读取的字符数 int read(byte[] c, int off , 阅读全文