日期:2014-05-16  浏览次数:20396 次

javascript复习5:高级对象
<input type="button" value="Back" onclick="goBack()" /><br />
<input type="button" value="Forward" onclick="goForward()" /><br />
<input type="button" value="Back5" onclick="goBack5()" /><br />
<input type="button" value="Load new document" onclick="newDoc()" /><br />
<input type="button" value="Reload page" onclick="reloadPage()" /><br />
<input type="button" value="Replace document" onclick="replaceDoc()" /><br />

history

function goBack()
  {
  window.history.back()
  }

function goForward()
  {
  window.history.forward()
  }

function goBack5()
  {
  window.history.go(-5)
  }
location

document.write(location.href);

function newDoc()
  {
  window.location.assign("http://127.0.0.1/js1")
  }

function reloadPage()
  {
  window.location.reload()
  }

function replaceDoc()
  {
  window.location.replace("http://127.0.0.1/js1")
  }
screen

document.write("<p>Width: ")
document.write(screen.width + "</p>")
document.write("<p>Height: ")
document.write(screen.height + "</p>")
document.write("<p>Pixel Depth: ")
document.write(screen.pixelDepth + "</p>")

navigator
document.write("<p>浏览器:")
document.write(navigator.appName + "</p>")

document.write("<p>浏览器版本:")
document.write(navigator.appVersion + "</p>")

document.write("<p>代码:")
document.write(navigator.appCodeName + "</p>")

document.write("<p>平台:")
document.write(navigator.platform + "</p>")

document.write("<p>Cookies 启用:")
document.write(navigator.cookieEnabled + "</p>")

document.write("<p>浏览器的用户代理报头:")
document.write(navigator.userAgent + "</p>")

document.write("<p>是否在线:")
document.write(navigator.onLine + "</p>")