我正在尝试在 window.onload 上存储变量的值以供以后使用
不工作。为什么?我想这样做是因为 seoquake bar 将 dis 添加到我的源代码中,并且它弄乱了我正在使用的基于文档的 div 长度的 for 循环
window.onload = var dekki = function window(){
var div = document.getElementsByTagName('div');
divLength = div.length;
return divLength;
}
document.write(dekki);
not working. Why? i want to do this because seoquake bar adds dis to my source code and it messes up a for loop i am using that is based on the div length of document
window.onload = var dekki = function window(){
var div = document.getElementsByTagName('div');
divLength = div.length;
return divLength;
}
document.write(dekki);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将它们分开即可工作
Just separate them then they will work
您在此处为“dekki”分配一个函数。相反,做
You are assigning a function to 'dekki' here. Instead, do