JQuery -1

来源:互联网 发布:斗鱼fifa卡卡淘宝店 编辑:程序博客网 时间:2024/06/09 14:19

jQuery是一个命名的空间,$是其同义词alias.  jQuery的命令都是开始于jQuery的函数或者$。

每一个jQuery命令都是由三个部分组成: selector, action, parameters (jquery/$('p').css('a','b');

html 5中每个节点都是基于<a></a>之类的匹配节点的。

JQuery selection:

$(html tag); $(id_name): $('#id_name');$(.class_name): show all the kinds of selectors.

$('table.data'): select the table tag with class 'data' nodes.

$('#id_name tr'): select the tr nodes with parent #id_name.

 

 

 

原创粉丝点击