我试图将JQuery包含在我的电子项目中,它现在应该正常工作。但它并没有。我的情况如下:
<head>
<meta charset="UTF-8">
<title>Esteam</title>
<link type="text/css" rel="Stylesheet" href="main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="node_modules/node-waves/dist/waves.min.css" />
<script src="app.js"></script>
<script src="wintools.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500' rel='stylesheet' type='text/css'>
</head>
现在,正如您所看到的,我在调用任何脚本之前很久就引用了JQuery,它正由电子shell加载,但我发现自己处于错误代码Uncaught ReferenceError: $ is not defined
。 stackoverflow上的其他页面都没有帮助我,因为jquery已经在其他脚本之前引用了,我直接从google复制了脚本标记。有人能帮助我吗?