我可以在拥有 jQuery 1.3.1 的同时使用 jQuery Migrate 1.4.1 吗?

Can I use jQuery Migrate 1.4.1 while having jQuery 1.3.1?

我的网站是 运行 jQuery 1.3.1。我想使用 jQuery Migrate 1.4.1 来迁移到更新版本的 jQuery。根据 https://github.com/jquery/jquery-migrate/blob/1.x-stable/README.md 的官方文档,我需要在 jQuery:

的脚本之后加载 jQuery Migrate 1.4.1
<script src="http://code.jquery.com/jquery-1.12.4.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.4.1.js"></script>

因为我有 jQuery 1.3.1,所以我正在使用这个:

<script src="http://code.jquery.com/jquery-1.3.1.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.4.1.js"></script>

我的网站出现故障,使用 jQuery 的部分不再正常工作。当我加载我的网站并转到控制台时,我看到了:

JQMIGRATE: Migrate is installed with logging active, version 1.4.1

但是,正如我提到的,我网站上的 jQuery 停止正常工作。我是否需要 jQuery 1.9+ 才能使用 jQuery Migrate 1.4.1?谢谢。

我试过这个:

    <script type="text/javascript" src="/gitplaypen/js/libs/jquery.js"></script>
    <script type="text/javascript" src="https://code.jquery.com/jquery-migrate-1.4.1.js"></script>

在上面的代码中,"jquery.js" 是 jQuery 1.3.1。在控制台中我可以看到:

JMIGRATE: Migrate is installed with logging active, version 1.4.1