美文网首页
文档对象(document)

文档对象(document)

作者: 挥剑斩浮云 | 来源:发表于2018-03-12 16:39 被阅读0次
    • 这次我们介绍另一个网页中核心的对象:“document对象”。注意,document对象是window对象中的子对象
    • 1、document对象属性


      document对象属性

      2、document对象方法


      document对象方法

    文档标题

    语法:document.title
    

    文档信息

    • 在JavaScript中,如果我们想要获取网页文件的基本信息,我们可以通过document对象的以下属性来获取:


      document对象的文档信息属性

    文档地址

    语法:document.URL
    
    document对象的颜色属性
    • 在JavaScript中,可以使用document对象的fgColor和bgColor这两个属性来分别设置文档的前景色和背景色。大家知道背景色是咋回事,不过可能新手想不通前景色是啥?前景色嘛,说白了就是文字的颜色。document对象的fgColor和bgColor分别对应于CSS中的color和background-color这两个属性
    语法:
    document.fgColor = "颜色值";
    document.bgColor = "颜色值";
    

    二、超链接颜色

    • 在JavaScript中,超链接的文字颜色可以通过document对象的linkColor、alinkColor和vlinkColor这3个属性来设置
    语法:document.linkColor = "颜色值";
    

    输出数据

    一、write()方法

    语法:
    document.write("输出的内容")
    

    二、writeln()方法

    • writeln()方法跟write()方法类似,不过writeln()方法输出内容的同时会在内容之后添加一个换行符“\n”。writeln是以行方式输出的,一般情况下用两种方法输出的效果在页面上是没有区别的,两种方法仅当在查看源代码时才看得出区别,除非把内容输出到pre或xmp标签内
    语法:
    document.writeln("输出的内容")
    

    相关文章

      网友评论

          本文标题:文档对象(document)

          本文链接:https://www.haomeiwen.com/subject/qsgwfftx.html