移动网站标记标签?
似乎是一个很容易找到的答案..但是我花了几个小时搜索但没有运气。
开发人员应该在移动网络应用程序上使用哪些官方标签?
例如
<callout><phone><map><address>
w3c 有官方列表吗?
Seems like an easy answer to find .. however I have spent hours searching with no luck.
What are the official tags that developers are supposed to use on mobile web apps?
Like
<callout><phone><map><address>
Does w3c have an official list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
设备种类繁多,无论您的目标设备是什么,您都必须进行测试。新的智能手机(iPhone、基于 Android 的手机、Palm Pre)都具有良好的网络浏览器,支持与桌面浏览器相同的标签。
There's such a variety across devices that you'll really have to test on whatever your target devices are. The new smartphones (iPhone, Android-based phones, Palm Pre) all have good web browsers that support all the same tags as the desktop browsers.
使用 xHTML 移动配置文件 和 < a href="http://www.wapforum.org/what/technical/wml-30-apr-98.pdf" rel="nofollow noreferrer">WML 适用于旧手机。
Use xHTML Mobile Profile and WML for old phones.
在当前的浏览器上,它是常规的 HTML。旧版本的 Pocket IE 可能存在问题,但大多数使用它的人都习惯了问题。
On current browsers, it's regular HTML. Old versions of Pocket IE may have issues, but most people who use that are used to issues.
您的意思是官方 DocType 或特定的移动浏览器还是什么?
我不认为通过手机访问的网络应用程序有任何类型的官方标签来指定这一点。事实上,Eric Meyer 写得非常情绪化关于 iPhone 的媒体/浏览器定位主题。
我所知道的关于网络应用程序和移动设备的唯一官方信息(来自 w3c)是 @media CSS 规则,特别是
@media手持设备
。如果您只是想获得有关为移动受众制作网络应用程序的好建议,您应该查看:
http:// /www.alistapart.com/articles/putyourcontentinmypocket/
Do you mean like the official DocType or mobile browser specific or what?
I don't think web apps that are visited via mobile phone have any kind of official tags to designate this. In fact, Eric Meyer has written very emotionally on the topic of media/browser targeting for iPhones.
The only thing official (and from the w3c) that I know of in regards to web apps and mobile devices is @media rules for CSS, specifically
@media handheld
.If you just want great advice on making web apps for a mobile audience, you should check out:
http://www.alistapart.com/articles/putyourcontentinmypocket/