zoukankan      html  css  js  c++  java
  • javasrcipt——BOM

    window

    -document
      -anchors
      -forms
      -images
      -links
    -location
    -frames
    -history
    -location
    -navigator
    -screen

    window对话框
    alert()        显示带有一段消息和一个确认按钮的警告框。
    prompt()    显示可提示用户输入的对话框。
    confirm()    显示带有一段消息以及确认按钮和取消按钮的对话框。

    document属性
    alinkColor 激活链接颜色
    vlinkColor 访问过的链接颜色
    linkColor 链接颜色
    bgColor 页面背景色
    fgColor 页面文本颜色
    lastModified 最后修改页面的日期
    referrer 浏览器历史中后退一个位置的url
    title
    URL 当前页面的url

    document方法
    document.write()
    document.writeln()会在字符串末尾加上换行符(\n)
    document.open()
    document.close()

    var oNewwin=window.open("about:blank","Newwindow","height=150,width=300,top=10,left=10,resizable=yes");
    oNewwin.document.open();
    oNewwin.document.write("<html><head><title>xxxxx</title></head>");
    oNewwin.document.write("<body>tttttttttttttttttttt</body><html>");
    oNewwin.document.close(); 

    document集合
    -anchors 页面中所有锚点
    -forms 表单集合
    -images 图片集合
    -links 链接集合
    -embeds 嵌入对象集合
    集合使用方法document.images[0];document["name"];

    history对象
    go();
    back();
    forward();
    length

    location对象
    属性
    http://www.feng.com/pic/index.html
    hash #及号之后的内容
    host www.feng.com
    hostname feng.com
    href 当前页面的完整url
    pathname /pic/index.html
    port 端口
    protocol 获取//之前的内容
    search 获取url中?及之后的neir
    方法
    assign("url") 加载页面
    replace("url") 加载页面,但是不能从历史中查看
    reload() true是从服务器重载,false是从浏览器缓存中重载

    screen对象
    width
    height
    availWidth
    availHeight
    ************************/
    alert(screen.availHeight+":"+screen.availWidth);
    alert(history.length);
    var oNewwin=window.open("about:blank","Newwindow","height=150,width=300,top=10,left=10,resizable=yes");
    oNewwin.document.open();
    oNewwin.document.write("<html><head><title>xxxxx</title></head>");
    oNewwin.document.write("<body>tttttttttttttttttttt</body><html>");
    oNewwin.document.close();

  • 相关阅读:
    css的一些属性及其属性值
    HTML基本标签
    JQuery
    js中的Dom事件模型以及表格方面等内容
    Alpha的过程总结
    数独+GUI界面
    数独
    调研《构建之法》指导下的全国高校的历届软工实践作品、全国互联网+竞赛、物联网竞赛、华为杯研究生作品赛、全国大学生服务外包赛等各类全国性大学生信息化相关的竞赛平台的历届作品
    本学期高级软件工程课程的实践项目的自我目标
    高级软件工程第八次作业:“两只小熊队”团队作业-5
  • 原文地址:https://www.cnblogs.com/fslnet/p/2282322.html
Copyright © 2011-2022 走看看