以織夢程式建站為例,移動頁面圖片變形解決方法:修改PHP系統文件:include/ arc.archives.class.php ...
移動頁面圖片變形解決方法
以織夢程式建站為例:
修改PHP系統文件:include/ arc.archives.class.php,查找代碼:
- //設置全局環境變數
- $this->Fields['typename'] = $this->TypeLink->TypeInfos['typename'];
- @SetSysEnv($this->Fields['typeid'],$this->Fields['typename'],$this->Fields['id'],$this->Fields['title'],'archives');
在其下麵增加:
- //去掉img的width和height
- $this->Fields['body'] = preg_replace("/style=\"width\:(.*)\"/","",$this->Fields['body']);
結語:修改之後,然後清除網站後臺緩存,重新更新生成網頁即可解決此問題,打開移動端手機站,網頁的圖片變形已消除,可以正常瀏覽,非常美觀。