qq_小米虾_0
2016-03-14 10:46
在按下回车键的功能里,加入判断目前选定的是哪一个a时使用了as[i].css('color')=='rgb(221,221,221)',出现了Uncaught TypeError: Cannot read property 'css' of undefined 的错误
哦,没有color='rgb(221,221,221)'的吧,color是文字颜色的属性,你写的'rgb(221,221,221)'是想写背景颜色的吧。。
要么style.color == ‘#999’或者 style.background =='rgb(221,221,221)'
改为style.color后,报错Uncaught TypeError: Cannot read property 'style' of undefined;但是style.display却不报错,请教下这是为什么?
谢谢!加载了jq.js就可以使用了,对吧
as[i].style.color == 'rgb(221,221,221)'; js中没有.css的方法,jq中有的。。
DOM事件探秘
99544 学习 · 1197 问题
相似问题