输入文件accept =“image / *”capture =“camera”禁用在移动设备上浏览

时间:2014-07-23 15:13:29

标签: android html

我有这个html行允许文件上传。现在当我尝试使用android时,它允许我从手机浏览器。我想完全禁用任何浏览,但只是直接到相机。我把捕获="相机"它仍然给我提供浏览选项。该页面是一个php页面。

<form class="form-horizontal" action="ag1.php" method="post" name="form1" id=form1 enctype="multipart/form-data" onSubmit="return validateForm();">

<input type='file' id="sImage" name="sImage" accept="image/*" capture="camera">

1 个答案:

答案 0 :(得分:0)

为后置摄像头设置capture="environment",为前置摄像头设置capture="user"将强制显示摄像机。因此您的代码应如下所示。

<input type='file' id="sImage" name="sImage" accept="image/*" capture="environment">

让我知道这是否可行。