history.length 红太狼 2020-05-26 15:55 666阅读 0赞 # history.length 此属性可以返回浏览器历史列表中的URL数量。 语法结构: ```javascript history.length ``` **浏览器支持:** (1).IE浏览器支持此属性。 (2).edge浏览器支持此属性。 (3).谷歌浏览器支持此属性。 (4).opera浏览器支持此属性。 (5).火狐浏览器支持此属性。 (6).safria浏览器支持此属性。 **代码实例:** ```html <!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.dandelioncloud.cn/" /> <title>蒲公英云</title> <script type="text/javascript"> document.write(history.length); </script> </head> <body> </body> </html> ``` 以上代码可以输出浏览器历史列表中的URL数量。
还没有评论,来说两句吧...