我有一个html页面,它使用我的iphone上的相机并返回一个警报。它作为一个Web应用程序工作正常,但当我尝试使用原生ui webview相机仍然被调用,但没有警报。知道为什么吗?
function getImage()
{
navigator.device.capture.captureImage(
function(success){
alert('getImageSuccess');
},
function(error){
alert('getImageFailure');
}
);
}