geolocation????????地理位置
????大數(shù)據(jù)統(tǒng)計
????生活
????????滴滴 ????摩拜單車????美團外賣????導航
????社交
????????微信????陌陌????探探???? QQ
必須放在服務器環(huán)境
????PC????????IP地址
????移動設備????GPS定位
window.navigator.geolocation
????獲取當前位置:只能獲取一次
.getCurrentPosition(function(pos){
pos.coords //位置信息
longitude 經(jīng)度
latitude 緯度
accuracy 精準度
altitude 海拔
altitudeAccuracy 海拔精準度
heading 朝向
speed 速度
});
????實時獲取位置
.watchPosition(function(pos){
pos.coords
})
或者
setInterval(function(){
navigator.getCurrentPosition(function(pos){
pos.coords;
});
},3000);
.clearWatch()
116.5153731,39.7835112
文件拖拽
????ondragenter
????????拖進去
????ondragleave
????????拖出來
????ondragover ????????懸浮
????ondrop????????釋放鼠標觸發(fā)
????return false;????阻止瀏覽器的默認行為
????ondrop不觸發(fā)
????????只有把ondragover的默認行為阻止已亥,ondrop才會觸發(fā)