我有这样的代码,但是console.log没有带来任何东西,当我尝试输入控制台时,我可以看到它已加载,但是当我加载这个脚本时它没有带来任何控制台和jQuery函数是不工作代码如下:
var bbimagebannerfile = "/300x250.jpg";
document.write("<a href=\"%%__REDIRECT%%\" target=\"_blank\"><img src=\"" + bbimagebannerfile + "\" border=\"0\" /></a>");
if (typeof jQuery == 'undefined') {
var headTag = document.getElementsByTagName("head")[0];
var jqTag = document.createElement('script');
jqTag.type = 'text/javascript';
jqTag.src = '//Libraries/ThirdParty/Jquery/1.10.2.min.js';
jqTag.onload = myJQueryCode;
headTag.appendChild(jqTag);
}
console.log(window.jQuery); // Ar jau yra užkrautas jQuery
if ('undefined' !== typeof window.jQuery) {
console.log(window.jQuery("#Tomas")); // Ar jau yra inicializuotas div'as su ID "Tomas" (wery bad approach)
var main = function () {
var t = $("#Tomas").offset().top;
$(document).scroll(function () {
if ($(this).scrollTop() > t)
{
$("#Tomas")
.css('position', 'fixed') //we change the position to fixed
.css('top', 0); // and the top to zero
} else {
$("#Tomas")
.css('position', 'static') //we change the position to fixed
.css('top', 0); // and the top to zero
}
});
}
$(document).ready(main);
}
答案 0 :(得分:0)
正如评论中提到的Sirko,您已经引用了一些回调myJQueryCode
我只展示一下这种实现的一个例子:
var bbimagebannerfile = "/300x250.jpg";
document.write("<a href=\"%%__REDIRECT%%\" target=\"_blank\"><img src=\"" +
bbimagebannerfile + "\" border=\"0\" /></a>");
var onJqueryLoad = function (flag) {
if ('undefined' !== typeof window.jQuery) {
console.log(window.jQuery("#Tomas")); // Ar jau yra inicializuotas div'as su ID "Tomas" (wery bad approach)
var main = function () {
var t = $("#Tomas").offset().top;
$(document).scroll(function () {
if ($(this).scrollTop() > t) {
$("#Tomas")
.css('position', 'fixed') //we change the position to fixed
.css('top', 0); // and the top to zero
} else {
$("#Tomas")
.css('position', 'static') //we change the position to fixed
.css('top', 0); // and the top to zero
}
});
if ('function' === typeof myJQueryCode && !flag) {
myJQueryCode();
}
}
$(document).ready(main);
}
}
if (typeof jQuery == 'undefined') {
var headTag = document.getElementsByTagName("head")[0];
var jqTag = document.createElement('script');
jqTag.type = 'text/javascript';
jqTag.src = '//Libraries/ThirdParty/Jquery/1.10.2.min.js';
jqTag.onload = onJqueryLoad;
headTag.appendChild(jqTag);
}
onJqueryLoad(true);
您也可以在MDN上查看有关HTMLScriptElement的文章