慕粉13482341627
2016-10-26 11:20
var getValue=function(className){
$elem=$(''+className+'');
return {height:$elem.height(),
top:$elem.position().top};
};
top:$elem.position().top报错Uncaught TypeError:Cannot read property 'top'of null 是什么原因?
position(top)试试
你的QiXi.js文件的位置不对,或者没有加$(function(){})
top后的第一个}是return的,下面一个}是function的
很明显的错误
var getValue=function(className){ $elem=$(''+className+''); return {height:$elem.height(), top:$elem.position().top}; 这里多}; };
更改后 var getValue=function(className){ $elem=$(''+className+''); return { height:$elem.height(), top:$elem.position().top };
试过了,还是报同样的错误!能否帮忙回答错在哪里?谢谢
加个window.onload
H5+JS+CSS3实现七夕言情
211525 学习 · 540 问题
相似问题