2.コンテンツタイプ(表示文字セット設定)設定ページ"/> 2.コンテンツタイプ(表示文字セット設定)設定ページ">
ホームページ > 記事 > ウェブフロントエンド > モバイルでヘッダータグを使用する方法
1.metaタグ http-equiv属性の構文形式:
<meta http-equiv="expires" content="wed,20 Jun 2007 22:33:00 GMT"/> <!--expires 期限,可用于网页的到期时间,一旦网页过期,必须到服务器上重新传输-->
2.content-type(表示文字セット設定) ページで使用する文字セットを設定します
<meta http-equiv="content-type" content="text/html" charset="utf-8"/>
3.keywords(キーワード)
<meta http-equiv="Keywords" content="keywords1,keywords2...."/>
4.description (説明)
<meta http-equiv="description" content="this is my page"/>
5.format-detection フォーマット検出
1 ページ上の数字を電話番号として認識するのを無視する
<meta http-equiv="format-detection" content="telephone=no"/>
2 メールアドレスを認識しないようにデバイスに指示する, クリックしても自動送信されません。
<meta http-equiv="format-detection" content="email=no"/>
6.viewport
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
initial-scale:[0.0-1.0] 初期スケーリング率を定義します
minimum-scale:[0.0-1.0] 最小縮小率を定義します
maximum-scale:[ 0.0- 1.0] 最大ズーム率を定義します
ユーザースケーラブル: はい/いいえ ユーザーがページを手動でズームできるかどうか
以上がモバイルでヘッダータグを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。