摘要:
(解析器)DocumentBuilder.parse(File f) 将给定文件的内容解析为一个 XML 文档,并且返回一个新的 DOM Document 对象。 通过解析器 解析文档后得到的返回类型是Document接口类型的实现类 Document,Element是Node(节点)的子接口 DO 阅读全文
摘要:
(function(a,b){console.log(a+","+b)})(1,2) 语法1:<script type="text/javascript"> <!-- document.write("hello,JavaScript"); --></script>语法2:<body onload=" 阅读全文
摘要:
windowhistory 前进后退location 地址栏document 文档内容 historyhistory.forward() //前进到下个页面history.back() //返回到上个页面 history.go(n); n为-1 返回上个页面n为1 前进下个页面n为0 刷新当前页面 阅读全文
摘要:
private static Properties properties; properties.load(is); 报错 进入build path 在Libraries 修改jre Sun JDK1.6 解决问题 阅读全文