最近做webapp項目過程中,發現坑還是挺多的,一方面時對這方面開發的接觸還不是很深,另外就是基礎知識不扎實了,移動web開發在相容性方面的問題還是挺多的,以下是網路收集一些開發中的常見問題及知識彙總,以便查閱,慢慢更新:)。 meta 基礎知識 H5頁面視窗自動調整到設備寬度,並禁止用戶縮放頁面 ...
最近做webapp項目過程中,發現坑還是挺多的,一方面時對這方面開發的接觸還不是很深,另外就是基礎知識不扎實了,移動web開發在相容性方面的問題還是挺多的,以下是網路收集一些開發中的常見問題及知識彙總,以便查閱,慢慢更新:)。
meta 基礎知識
H5頁面視窗自動調整到設備寬度,並禁止用戶縮放頁面
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
忽略將頁面中的數字識別為電話號碼
<meta name="format-detection" content="telephone=no" />
忽略Android平臺中對郵箱地址的識別
<meta name="format-detection" content="email=no" />
viewport模板
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=750, user-scalable=no, target-densitydpi=device-dpi"><!-- width取值與頁面定義的寬度一致 -->
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="telephone=no" name="format-detection">
<meta content="email=no" name="format-detection">
<title>標題</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
這裡開始內容
</body>
</html>