您的位置:首页 > 移动开发 > IOS开发

IOS6~<input type="file">

2013-06-18 11:27 423 查看
如果正在搞IOS Web App,很可能会遇到<input type="file">  ,不幸的是,我正在搞的项目是混合型的,点击<input type="file"> 调用原生接口调出相册或相机,如果IOS6之前,不会出问题,但从IOS6开始,web中的 <input type="file"> 也会调用相机或相册接口,这样就一下子弹出两个选择框。

需要在 js 中禁用 <input type="file">

  代码:$('#btn_Id input').remove();

参考链接:
http://developer.apple.com/library/ios/#releasenotes/General/RN-iOSSDK-6_0/ http://www.aaronlumsden.com/articles/ios6-the-benefits-for-html5-web-app-development/ http://www.qianduan.net/html5-support-in-safari-on-the-ios-6.html http://www.qianduan.net/iphone5ios6-front-end-development-guide.html http://www.mobilexweb.com/blog/iphone-5-ios-6-html5-developers
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: