PHP开发WAP网站程序与开发WEB程序有何区别
展开全部
现在WAP2.0是趋势,你看GOOGLE和网易都是在用2.0.
对于2.0来说,和WEB并没有太多的区别。CSS和JS的变现会简单的很多。
WAP不像WEB只有几种浏览器,WAP有上千种。
你需要做的是下一个WAP2.0的标签手册
做大量的测试,以适应不同的平台。
谷歌的WAP首页如下 wap.google.cn
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8"/> <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0"/> <link rel="alternate" media="handheld" href="http://www.google.cn/m" /> <meta http-equiv="Cache-Control" content="no-cache"/> <style type="text/css"> /* <![CDATA[ */ html,body { background-color:#fff; padding: 0; margin: 0; } body { -webkit-text-size-adjust: none; } body,td { font-family:sans-serif; vertical-align:middle; font-weight:normal; } .hint { color:#555; font-size:small; padding-bottom:2px; } .block_head { font-weight:bold; padding-top:2px; } .form_block { padding:0px 0px 3px 2px; } .darkred { color:#900; } .small { font-size:small; } .xxsmall { font-size:xx-small; } .smaller { font-size:smaller; margin-bottom:1px; } .red { color:#f00; } .grey { color:#808080; } .dkgrey { color:#333333; } .green { color:#008000; } table { border-spacing:0px; } .fullWidth { width:100% } .alignright { text-align:right; } .center { text-align:center; } .padtop { padding-top:10px; } .padbottom { padding-bottom:6px; } .smallpadbottom { padding-bottom:3px; } .padleft { padding-left:12px; } .floatright { float:right; } .divider_line { border-top:2px solid #7AA5D6; margin-top: 6px; margin-bottom: 4px; } /* ]]> */ .vcent { vertical-align:middle } .textinput { } </style> <title>Google</title> <script> /* <![CDATA[ */ function set_module_display_style(m_id, m_style) { var m = document.getElementById(m_id); if (m) { m.style.display = m_style; } } function show_module(m_id) { set_module_display_style(m_id + '_closed', 'none'); set_module_display_style(m_id + '_open', 'block'); } function hide_module(m_id) { set_module_display_style(m_id + '_open', 'none'); set_module_display_style(m_id + '_closed', 'block'); } /* ]]> */ </script> </head> <body onload="document.getElementById('query').focus();"> <div style="padding: 8px;"> <div><div class="padbottom"> <img src="http://www.gstatic.cn/m/images/google_cn_medium.gif" class="vcent" alt="Google" width="90" height="33" /> <form action="/m/search"> <div> <input type="hidden" name="mrestrict" value="xhtmlchtml"/> <input type="hidden" name="eosr" value="on"/> <input class="textinput" type="text" id="query" name="q" size="10" maxlength="2048" value=""/> <input type="submit" value="搜索"/> </div> </form> <div class="padtop small"> <a href="/m?site=images">图片</a>|<a href="/m/news?hl=zh_CN">资讯</a>|<a href="/m?site=weather">天气</a>|<a href="/m?site=finance">财经</a><br/><a href="/m?site=local">地图</a>|<a href="/m?site=directions">公交</a>|<a href="/m?site=restaurant">餐饮</a>|<a href="/m?site=house">房屋</a><br/><a href="/m/billboard">热榜</a>|<a href="/m/dictionary">字典</a>|<a href="http://m.google.cn/?source=magmahome&hl=zh-CN">更多</a>
</div>
</div> <div class="small"><span class="red">»新</span><a href="http://m.google.cn/maps?source=m2&dc=mobile-promotion">下载手机地图v2</a> </div> <div class="padbottom"><div> </div></div></div> <div class="small padtop"> <div class="small padtop"> <a href="/m?action=sets&sig=AMctaOILJB-dFUnySYvqvYEj-VNFfZ7TBg">设置</a> <br/> </div> <div class="small padtop"> <a href="/m/support">反馈意见</a> <br/> </div> <div class="small padtop"> <a href="http://www.google.cn/m/help?output=xhtml">帮助</a> <br/> </div> <div class="small padtop"> <a href="http://yidong.google.com/m?hl=en">Google.com in English</a> <br/> </div> </div> <div class="center small padtop"> 选择 Google 的版面: <br/> <b>WAP</b> | <a href="">标准版</a><br/><br/> ©2009 - <a href="http://m.google.com/static/zh-CN/privacy.html">隐私权</a> </div> </div> </body>
</html>
对于2.0来说,和WEB并没有太多的区别。CSS和JS的变现会简单的很多。
WAP不像WEB只有几种浏览器,WAP有上千种。
你需要做的是下一个WAP2.0的标签手册
做大量的测试,以适应不同的平台。
谷歌的WAP首页如下 wap.google.cn
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8"/> <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0"/> <link rel="alternate" media="handheld" href="http://www.google.cn/m" /> <meta http-equiv="Cache-Control" content="no-cache"/> <style type="text/css"> /* <![CDATA[ */ html,body { background-color:#fff; padding: 0; margin: 0; } body { -webkit-text-size-adjust: none; } body,td { font-family:sans-serif; vertical-align:middle; font-weight:normal; } .hint { color:#555; font-size:small; padding-bottom:2px; } .block_head { font-weight:bold; padding-top:2px; } .form_block { padding:0px 0px 3px 2px; } .darkred { color:#900; } .small { font-size:small; } .xxsmall { font-size:xx-small; } .smaller { font-size:smaller; margin-bottom:1px; } .red { color:#f00; } .grey { color:#808080; } .dkgrey { color:#333333; } .green { color:#008000; } table { border-spacing:0px; } .fullWidth { width:100% } .alignright { text-align:right; } .center { text-align:center; } .padtop { padding-top:10px; } .padbottom { padding-bottom:6px; } .smallpadbottom { padding-bottom:3px; } .padleft { padding-left:12px; } .floatright { float:right; } .divider_line { border-top:2px solid #7AA5D6; margin-top: 6px; margin-bottom: 4px; } /* ]]> */ .vcent { vertical-align:middle } .textinput { } </style> <title>Google</title> <script> /* <![CDATA[ */ function set_module_display_style(m_id, m_style) { var m = document.getElementById(m_id); if (m) { m.style.display = m_style; } } function show_module(m_id) { set_module_display_style(m_id + '_closed', 'none'); set_module_display_style(m_id + '_open', 'block'); } function hide_module(m_id) { set_module_display_style(m_id + '_open', 'none'); set_module_display_style(m_id + '_closed', 'block'); } /* ]]> */ </script> </head> <body onload="document.getElementById('query').focus();"> <div style="padding: 8px;"> <div><div class="padbottom"> <img src="http://www.gstatic.cn/m/images/google_cn_medium.gif" class="vcent" alt="Google" width="90" height="33" /> <form action="/m/search"> <div> <input type="hidden" name="mrestrict" value="xhtmlchtml"/> <input type="hidden" name="eosr" value="on"/> <input class="textinput" type="text" id="query" name="q" size="10" maxlength="2048" value=""/> <input type="submit" value="搜索"/> </div> </form> <div class="padtop small"> <a href="/m?site=images">图片</a>|<a href="/m/news?hl=zh_CN">资讯</a>|<a href="/m?site=weather">天气</a>|<a href="/m?site=finance">财经</a><br/><a href="/m?site=local">地图</a>|<a href="/m?site=directions">公交</a>|<a href="/m?site=restaurant">餐饮</a>|<a href="/m?site=house">房屋</a><br/><a href="/m/billboard">热榜</a>|<a href="/m/dictionary">字典</a>|<a href="http://m.google.cn/?source=magmahome&hl=zh-CN">更多</a>
</div>
</div> <div class="small"><span class="red">»新</span><a href="http://m.google.cn/maps?source=m2&dc=mobile-promotion">下载手机地图v2</a> </div> <div class="padbottom"><div> </div></div></div> <div class="small padtop"> <div class="small padtop"> <a href="/m?action=sets&sig=AMctaOILJB-dFUnySYvqvYEj-VNFfZ7TBg">设置</a> <br/> </div> <div class="small padtop"> <a href="/m/support">反馈意见</a> <br/> </div> <div class="small padtop"> <a href="http://www.google.cn/m/help?output=xhtml">帮助</a> <br/> </div> <div class="small padtop"> <a href="http://yidong.google.com/m?hl=en">Google.com in English</a> <br/> </div> </div> <div class="center small padtop"> 选择 Google 的版面: <br/> <b>WAP</b> | <a href="">标准版</a><br/><br/> ©2009 - <a href="http://m.google.com/static/zh-CN/privacy.html">隐私权</a> </div> </div> </body>
</html>
展开全部
服务端没有多大的区别,只是WAP输出的是WML代码,而WEB输出的是HTML代码.
参考资料: http://baike.baidu.com/view/160091.htm
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一个是网站,一个是手机网站。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询