gpt4 book ai didi

javascript - 如何保证 jQuery $ 被初始化?

转载 作者:行者123 更新时间:2023-11-28 01:32:41 26 4
gpt4 key购买 nike

在另一个问题中,StackOverflow 建议无法保证浏览器处理 <script> 的顺序。标签,无论它们在 <head> 中的位置如何或 <body> (见评论):

Scripts loading out of order in Chrome

最佳答案建议使用纯 javascript“加载 DOM”来保证加载所有依赖项,然后运行特定于页面的代码。

这让我想知道使用 jQuery 推荐的 $ 函数替代纯 JS DOM 加载是否安全:

// Shorthand for $( document ).ready()
$(function() {
console.log( "ready!" );
});

来源:http://learn.jquery.com/using-jquery-core/document-ready/

我如何保证 jQuery 的 $ 会被定义?

编辑:要求提供假设失败的示例。这是一个带有外部 <script> 的在<body> :

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example 1</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$(function(){
alert("Loaded.");
});
</script>
</body>
</html>

还有一个与外部 <script><head> ...

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example 1</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<script>
$(function(){
alert("Loaded.");
});
</script>
</body>
</html>

基于 Scripts loading out of order in Chrome ,其中任何一个都可能失败。

最佳答案

这个问题是基于一个错误的前提。引用问题,Scripts loading out of order in Chrome , 适用于使用 TurboLinks 的应用程序,它可以有效地将静态站点转换为单页应用程序。结果,我的 <script>标签是动态插入的,不能保证它们会按顺序运行。

关于javascript - 如何保证 jQuery $ 被初始化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29830272/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com