jquery中文社区
《jquery in action》
《jquery 实战》
$("input[type=text]"):匹配所有文本框;
位置选择器:a:first p:odd li:last-child;(详细查看google搜索)
input:not(:checkbox):匹配非复选框;
bind:绑定事件;
unbind:解除绑定事件;
visible:可见的
假如你的id命名比较特殊,比如“site.sohu”,如何获取它?
使用逃逸字符:\\ eg:$("#site\\.sohu").val();