此问题在此处已有答案:
How can I get the device's phone number through JavaScript in Android?(2个答案)
2天前关闭。
我正在寻找一种使用HTML 5,Javascript或类似的东西来获取设备电话号码的方法。最近,我想获取设备的坐标。我可以通过编写一些JS来轻松做到这一点:
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to get your coordinates:</p>
<button onclick="getLocation()">Try It</button>
<script>
var x=document.getElementById("demo");
function getLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
else{x.innerHTML="Geolocation is not supported by this browser.";}
}
function showPosition(position)
{
x.innerHTML="Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
</script>
</body>
</html>
现在我几乎完成了我的工作,但我需要做的最后一件事是获得访问该网站的智能手机的电话号码。
有没有办法做到这一点呢?:谢谢。
1条答案
按热度按时间vvppvyoh1#
没有可靠的方法可以在不提示用户的情况下使用JavaScript获取电话号码。也就是说,它不能使用浏览器API自动检索。
在某些Android / iPhone应用程序视图中是可能的。请参见此处的讨论:How can I get the device's phone number through JavaScript in Android?。这里:Getting the local iPhone number through SDK
正如评论中所提到的,这在一般情况下不是一件好事(隐私等)。如果需要电话号码,一定要提示用户输入。