在下面的示例中,$()函数的作用是什么?
$()
function test(){ var b=$('btn1'); eval(b); }
发布于 2010-01-30 18:37:34
它不是JS内置的函数,而是它的原型
http://www.prototypejs.org/api/utility/dollar-dollar
https://stackoverflow.com/questions/2167544
相似问题