2727551894

导航

 

2014年12月16日

摘要: 【jQuery】 Ajax $.ajax({ type: "Post", // 发包方式 cache: false, // 是否缓存 contentType: "application/json", // 发送数据类型 data 的类型 ... 阅读全文
posted @ 2014-12-16 14:55 xmj112288 阅读(243) 评论(0) 推荐(0) 编辑
 
摘要: 【jQuery】 常用函数 html() : 获取设置元素内的 html,包含标签 text() : 获取设置元素内的文本, 不包含标签 val() : 获取设置value 值 attr() : 获取设置属性值 css() : 获取设置样式 append() : 在元素(内)的尾部添加 prepen... 阅读全文
posted @ 2014-12-16 14:46 xmj112288 阅读(179) 评论(0) 推荐(1) 编辑
 
摘要: 【jQuery】 资料1. 选择器 http://www.w3school.com.cn/jquery/jquery_ref_selectors.asp2. 事件 http://www.w3school.com.cn/jquery/jquery_ref_events.asp3. 效果 http://... 阅读全文
posted @ 2014-12-16 14:23 xmj112288 阅读(118) 评论(0) 推荐(0) 编辑
 
摘要: 【jQuery】 效果资料 http://www.w3school.com.cn/jquery/jquery_ref_effects.asp1. 显示隐藏hide();隐藏show(); 显示 toggle(); 隐藏和显示间切换2. 淡入淡出 fadeIn(); 淡入 fadeOut(); 淡出 ... 阅读全文
posted @ 2014-12-16 14:12 xmj112288 阅读(763) 评论(0) 推荐(0) 编辑
 
摘要: 【jQuery】 选择器资料: w3school http://www.w3school.com.cn/jquery/jquery_ref_selectors.asp1. 标签选择器 :$("P") -- 所有的 P 标签2. Id 选择器 : $("#txtid") -- id = txtid 的... 阅读全文
posted @ 2014-12-16 13:57 xmj112288 阅读(136) 评论(0) 推荐(0) 编辑