任何 Ruby on Rails 库都可以检测客户端设备是否支持拖放功能?
我正在开发一个带有一些拖放屏幕的 Ruby-on-Rails-3 网站。
拖放功能并不适用于所有浏览器(尤其是某些手机)。
有没有一种简单的方法可以知道网络浏览器是否支持拖放,如果不支持则使用替代方法? (可以是服务器端或客户端)
我可以使用 WURFL 并检查 pointing_method=touchscreen 是否,但是一定有一种更 Ruby-on-Rails 的方式来做到这一点吗?
I am developing a Ruby-on-Rails-3 website with a few drag-n-drop screens.
Drag-n-drop does not work on all browsers (especially some phones).
Is there an easy way to know whether the web browser supports drag-n-drop, and use an alternative if not? (could be server-side or client-side)
I could use WURFL and check whether pointing_method=touchscreen, but there must be a more Ruby-on-Rails way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基于缺乏答案,我猜答案是否定的。
Based on the lack of answers, I guess that the answer is no.