html 未定义Jquery“$”

t3irkdon  于 2023-02-27  发布在  jQuery
关注(0)|答案(5)|浏览(341)

我创建了下面的网页,并在多台计算机上成功运行。在另一台计算机上运行时失败。调试时出现此错误:错误:"$"未定义
在IE 9上运行。
我尝试将Jquery链接更改为:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

但没有用。错误的原因是什么?
有完整的代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Simple Map</title>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <meta charset="utf-8">
    <META HTTP-EQUIV="Refresh" CONTENT="420">
    <style type="text/css">
      html, body, #map-canvas {
        height: 100%;
        margin: 0px;
        padding: 0px
      }

       .labels {
     color: orange;
     background-color: black;
     font-family: "Lucida Grande", "Arial", sans-serif;
     font-size: 10px;
     font-weight: bold;
     text-align: center;
     width: 50px;     
     border: 2px solid black;
     white-space: nowrap;}
    </style>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
    <script src="https://jquery-xml2json-plugin.googlecode.com/svn/trunk/jquery.xml2json.js" type="text/javascript" language="javascript"></script>
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
    <script src="http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.0.1/src/markerwithlabel.js"></script>
    <script>
var markers = [];
var map = null;

  $.get('Customers.xml', function(xml) {
      var jsonObj = $.xml2json(xml);
        $.each(jsonObj.Marker, function(){
            var stat = this.site_status == "Critical" ? "http://maps.google.com/mapfiles/ms/micons/red-dot.png" : "http://maps.google.com/mapfiles/ms/micons/green-dot.png";
                 var mark = {
                        title: this.title,
                        location: this.site_location,
                        icon: stat
                        }
                markers.push(mark);
        });
        for(var i=0; i< markers.length; i++){
          var maddress = markers[i].location;
          var image = markers[i].icon;
          var custname = markers[i].title;
          geocodeAddress(maddress, image, custname,map); 
        } 
});     

function geocodeAddress(maddress, image, custname,map) {
  var geocoder = new google.maps.Geocoder();
  geocoder.geocode( { 'address': maddress}, function(results, status) { 
    if (status == google.maps.GeocoderStatus.OK) {   
      var myLatlng = new google.maps.LatLng(results[0].geometry.location.lat(),results[0].geometry.location.lng());
      var iconBase = 'https://maps.google.com/mapfiles/kml/shapes/';
      var marker = new MarkerWithLabel({
      position: myLatlng, map:map, icon: image,labelContent: custname,
       labelAnchor: new google.maps.Point(22, 0),
       labelClass: "labels", // the CSS class for the label
       labelStyle: {opacity: 0.75}});
    } else {
      alert("Geocode was not successful for the following reason: " + status);
    }
  });
}

function initialize() {
    var chicago = new google.maps.LatLng(35.442579,-40.895920);
    var mapOptions = {
        zoom: 4,
        center: chicago,
        mapTypeId: google.maps.MapTypeId.ROADMAP
  }

  map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
    </script>
  </head>
  <body>
     <div id="map-canvas"></div>
  </body>
</html>

先谢了。

dgtucam1

dgtucam11#

函数$包含在脚本中:

//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js

因此,即使在加载此脚本之前调用$(function() {...或$(document).ready(...也会导致$变为undefined
由于脚本的加载顺序看起来是正确的,因此您似乎无法加载jquery.min文件-try clicking this link from the machine with the problem to make sure
和/或(* 不要引发CDN vrs本地辩论 *)-下载jquery文件并在本地调用它(如果您的访问者由于其他原因看不到该文件怎么办?)-至少有一个备份计划。

<script src="/pathtojsfiles/jquery.min.js"></script>

顺便说一句,一个更好的(* 加载脚本将要使用的标记 )文档设置是将脚本和使用这些脚本的函数放置在标记下,在</body>结束标记之前。2这( 用于更多SEO相关网站 *)将确保在添加外部JS之前加载页面内容。
!-这看起来已经说了一些这样的答案弹出作为一个类型,但张贴无论如何。

ruyhziif

ruyhziif2#

打开浏览器的开发者工具,查看网络,看看cdn是否加载jquery库失败。
如果没有,尝试到移动这脚本代码后的html代码.

k4ymrczo

k4ymrczo3#

通常这意味着jquery没有加载,请在开发工具中验证。如果是这种情况:1.查看javascript是否被禁用,因为您正在使用IIS我猜您也使用IE作为浏览器?尝试将您的本地主机添加到可信域
1.将其添加到代码中
如果(!窗口.jQuery){文档.write(“<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"><\/script>”);}

a0zr77ik

a0zr77ik4#

试着把

jQuery.noConflict();

并将代码中的$符号替换为jQuery
例如,将$.get('Customers.xml', function(xml)替换为jQuery.get('Customers.xml', function(xml)
参见more

ve7v8dk2

ve7v8dk25#

以上这些对我都不起作用。我在完全刷新浏览器缓存后才起作用。使用开发者网络跟踪,我看到一个304(jquery-xxxx.js not downloaded 0。

相关问题