表单选择器
:input 获取所有,,和元素
:text,:password,:hidden 获取所有单行文本框/密码框/不可见元素...:radio, :checkbox 获取所有单选框/多选框
:submit,:reset,:button 选取单选按钮、多选按钮、任意按钮
:image, :file 选取所有图像按钮,所有上传域
Tip...resources/test.json');
JSONP形式加载其他网站JSON数据示例:
$('#send').click(function() {
$.getJSON('http://api.flickr.com..., success, error, global
序列化元素 $(#form01).serialize()序列化为字符串,其等价于:
'username' + encodeURIComponent($...('#content').val())+'&'+ 'xxx';
.serializeArray()序列化为JSON数据
$.param(obj)将普通对象序列化
全局事件 $('#loading')