有网友碰到这样的问题“JavaScript 中$ 是什么含义”。小编为您整理了以下解决方案,希望对您有帮助:
解决方案1:
js中$本身就是普通的字符,可用作变量,函数名,在ajax框架中常被用来定义为取代getElementById的函数.
看你这个程序应该就是getElementById
因为后面取style了
解决方案2:
var $ = function(el){
return (typeof el == 'object')?el:document.getElementById(el);
};
var $A = function(el){
return (typeof el == 'object')?el:document.all(el); //IE Only && 仅IE支持
};
var $C = function(el){
return document.createElement(el);
};
var $N = function(el){
return (typeof el == 'string')?document.getElementsByTagName(el):null;
};
就是定义一函数,然后用的时候方便
解决方案3:
字符型,与串长有关,取值范围:0~65535