动态插入的jQuery库完成加载后执行我的jQuery脚本

问题描述 投票:3回答:1

我正在通过<script>标签在页面上动态插入jQuery库:

jq = document.createElement('script');
jq.setAttribute('src','//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js');
b.appendChild(jq);

然后,我有一些jQuery脚本需要在jQuery库完成加载并可以使用后运行:

$(f).load(function() {
    $(f).fadein(1000);
});

如何让它等待jQuery加载?

javascript jquery events onload jquery-events
1个回答
14
投票

在要插入的脚本标记处指定onload事件:

© www.soinside.com 2019 - 2024. All rights reserved.