javascript - 混合式开发中表单input file不生效(在安卓端)
PHP中文网
PHP中文网 2017-04-11 11:38:52
0
3
800

混合式开发后端用php,在前台页面中加了<input type="file">,能显示,但无法选择文件,这个功能是想上传图片,并返回数据的。

PHP中文网
PHP中文网

认证0级讲师

reply all(3)
阿神

<input type="file" accept="video/*;capture=camcorder">
<input type="file" accept="audio/*;capture=microphone">
<input type="file" accept="image/*;capture=camera">直接调用相机
<input type="file" accept="image/*" />调用相机 图片或者相册

刘奇

你用的什么浏览器,这个应该是可以的

小葫芦

重写WebChromeClient,里面增加一个方法就可以了:
public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture)

    {
        mUploadMessage = uploadMsg;
        Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
        intent.addCategory(Intent.CATEGORY_OPENABLE);
        intent.setType("image/*");
        startActivityForResult(Intent.createChooser(intent, "选择图片"), FILECHOOSER_RESULTCODE);
    }
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template