zoukankan      html  css  js  c++  java
  • 静态页面常用到

    <!DOCTYPE html>

    <html manifest="/m.appcache">
    页面ICON image/x-icon|image/gif
    <link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/vnd.microsoft.icon">
    <link rel="icon" href="http://example.com/favicon.ico" type="image/vnd.microsoft.icon">
    <link rel="Bookmark" href="favicon.ico" /> png
    预加载
    <link rel="prefetch" href="./img/ad/home_03.jpg" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
    <meta name="format-detection" content="telephone=no">
    <meta http-equiv="refresh" content="5">这个表示当前页面每5秒钟刷一下,刷一下~

    <meta http-equiv="refresh" content="2; url='/'">这个表示当前页面2秒后跳到首页~
    <script defer src="myscript.js"></script> async(两个都是异步,加载)defer加载后,等待执行。async下载完就执行。

    默认为同步加载,后执行.

  • 相关阅读:
    网络爬虫基础练习
    综合练习:词频统计
    画图
    Hadoop综合大作业
    hive基本操作与应用
    理解MapReduce计算构架
    熟悉HBase基本操作
    爬虫大作业
    熟悉常用的HDFS操作
    数据结构化与保存
  • 原文地址:https://www.cnblogs.com/jayruan/p/5321925.html
Copyright © 2011-2022 走看看