我正在 <input type="file" accept="image/*;capture=camera"/>
为网络移动使用 html 5 文件元素来拍照,它工作正常,但我如何处理 file.value 以将其发送到网络服务或数据库?这是移动设备的演示演示链接
这是我的代码,但不起作用我无法获取文件上传值
<html>
<script>
function getPhoto()
{
alert('2');
var fu1 = document.getElementById("myfile").value;
alert("You selected " + fu1);
}
</script>
<body>
<form>
<input type="file" name="myfile" accept="image/*;capture=camera"/>
<input type="submit"/>
<input type="button" value="get Photo path" onclick="getPhoto()">
</form>
</body>
</html>