jQuery   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了jquery – “未捕获的TypeError:无法在’Window’上执行’getComputedStyle’:参数1的类型不是’Element’.Tq ​​@ VM107:37mF,当gmap添加时大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我是新手,练习 HTMLjquery.
有人可以帮我解决这个错误吗?
我试图动态添加谷歌地图时,我收到一个错误,如未捕获的类型错误:未能在’window’:参数上执行’getComputedStyle’.

html标记是:

<type="submit" id="locate">Find me</button>
<div id="gmap"> </div>

enter code here

    $(document).ready(function () {

        $('#locate').on('click',function (E) {
            e.preventDefault();
            if (navigator.geoLOCATIOn) {
                navigator.geoLOCATIOn.getCurrentPosition(showPosition);
            }
            else {
                console.log('GeoLOCATIOn is not supported by your browser');
            }
        });
        var latlng,mapOptions,map;

        showPosition = function (position) {
            latlng = new google.maps.LatLng(position.coords.latitude,position.coords.longitudE)
            mapOptions = {
                center: latlng,mapTypEID: google.maps.MapTypEID.roaDMAP,zoom: 15
            }
            Map = new google.maps.Map($('#gmap'),mapOptions);
            var marker = new google.maps.Marker({
                position: latlng,map: map,title: "You are here"
            })
       }
    });

解决方法

两个问题:

> JavaScript区分大小写,这一行:

@H_159_6@map = new google.maps.Map

应该

@H_159_6@map = new google.maps.Map

(注意开头的地图中的小写m.)

那么为什么你没有得到“未定义的变量”错误或什么?因为The Horror of Implicit Globals.请虑使用strict mode,以便您获得主动通知.
> google.maps.Map构造函数希望你给它一个元素作为它的第一个参数,但你不是这样做的.你给它一个jQuery对象:

@H_159_6@map = new google.maps.Map($('#gmap'),mapOptions); // ^^^^^^^^^^--- this is a jQuery object

获取jQuery对象中的唯一元素,请使用[0]

@H_159_6@map = new google.maps.Map($('#gmap')[0],mapOptions); // Here ----------------------------^^^

大佬总结

以上是大佬教程为你收集整理的jquery – “未捕获的TypeError:无法在’Window’上执行’getComputedStyle’:参数1的类型不是’Element’.Tq ​​@ VM107:37mF,当gmap添加时全部内容,希望文章能够帮你解决jquery – “未捕获的TypeError:无法在’Window’上执行’getComputedStyle’:参数1的类型不是’Element’.Tq ​​@ VM107:37mF,当gmap添加时所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。