提问人:Francis Saul 提问时间:1/20/2016 更新时间:1/20/2016 访问量:659
在外部js中引用/导入jQuery库
reference/import jQuery library in external js
问:
我有一个外部js文件,只有在我导入jQuery库时才能正常工作 在我的aspx文件中,但是当我将jQuery库直接拖放到外部js文件时,我的外部js不起作用。
在外部js文件上导入jQuery的正确方法是什么,还是应该只在aspx页面中导入jQuery库?请帮我理解。
以下是我的代码
/// <reference path="Scripts/libframeworks/jQuery/jQuery-2.1.4.min.js" />
$(function () {
$("#btnSave").mouseover(function () {
$(this).css("background-color", "Red");
}).mouseleave(function () {
$(this).css("background-color", "Blue");
});
});
如果我删除这个
/// <reference path="Scripts/libframeworks/jQuery/jQuery-2.1.4.min.js" />
并以这种方式将其直接导入 aspx 页面
<script src="Scripts/libframeworks/jQuery/jQuery-2.1.4.min.js" type="text/javascript"></script>
我的外部 js 工作正常。但是我想在我的外部js上导入jQuery库。
答: 暂无答案
评论