HTML5 檢測(cè)瀏覽器是否支持
在開發(fā)之前需要得知瀏覽器是否支持所要完成的工作。如果瀏覽器不支持,就需要提前準(zhǔn)備一些替代的方案。
【例題】檢測(cè)瀏覽器是否支持Geolocation API
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<tit1e>Document</title〉
<script>
window.onload = function(){
show();
function show(){
if(navigator.geolocation){
document.getEleraentByld("text").innerHTML = "您的瀏覽器支持HTML5Geolocation!";
}else{
document.getElementByTd("text"). innerHTML = "您的瀏覽器不支持HTML5Geolbcjition!";
}
}
}
</script>
</head>
<body>
<hl id="text"></hl>
</body>
</html>
是的,只需要這個(gè)小小的函數(shù)即可檢測(cè)到您的瀏覽器是否支持HTML5 Geolocation。
點(diǎn)擊加載更多評(píng)論>>