无法在 QUnit 测试中使用从 http url 引用的 jQuery

Can't use jQuery referenced from a http url in a QUnit test

我尝试像这样在我的 QUnit 测试中包含 jquery:

/// <reference path="http://code.jquery.com/jquery-2.1.3.min.js" />

但是,这一行:

var input = $("<input type='text'/>");

会给我这样的错误:

1.Died on test #1: '$' is undefined

为什么?

我假设您在 Visual Studio 中进行 .NET 开发?那是我唯一见过 /// <reference ... /> 东西的地方。这实际上并没有在您的页面中包含源代码,它只是在您的 IDE 中包含 used for the IntelliSense reference。如果你想在你的测试中包含 jQuery 那么你需要将它包含在你的 QUnit HTML 文件中,就像任何其他参考一样带有 <script> 标签:

<html>
  <head>
    <script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>

    <!-- and then all of your QUnit stuff... -->
    <link rel="stylesheet" href="path/to/qunit.css">
    <script src="path/to/qunit.js"></script>
    <script src="path/to/your/tests.js"></script>
  </head>
  <body>
    <div id="qunit"></div>
  </body>
</html>