摘要:
jquery封装的ajax 具体操作: $.get(url [,data] [,fn回调函数] [, dataType]); data:给服务器传递的数据,请求字符串 、json对象 都可以设置 fn:回调函数,ajax请求完成后调用该函数,可以在此函数完成ajax的后续处理 dataType:服务 阅读全文
摘要:
/******************************************************************/ $(function(){ //live()事件委派,后续添加的li节点也会有与兄弟一样的事件设置 $('li').live('click',function() 阅读全文
摘要:
1. 事件绑定 jquery事件的简单操作: $().事件类型(function事件处理); $().事件类型(); 1.1 jquery事件绑定 $().bind(事件类型,function事件处理); $().bind(类型1 类型2 类型3,事件处理); //给许多不同类型的事件绑定同一个处理 阅读全文
摘要:
通过jquery方式实现页面各种节点的追加、修改、删除、复制等操作 节点追加 1 父子关系追加 /**********************************************************************/ <script type="text/javascript 阅读全文
摘要:
1. jquery加载事件实现 ① $(document).ready(function处理); ② $().ready(function处理); ③ $(function处理); 对第一种加载的封装而已 在同一个请求里边,jquery的可以设置多个,而传统方式只能设置一个 传统方式加载事件是给on 阅读全文
摘要:
快捷操作 1. class属性值操作 $().attr(‘class’,值); $().attr(‘class’); $().removeAttr(‘class’); //删除class的所有属性 $().addClass(值); //给class属性追加信息值 $().removeClass(值) 阅读全文
摘要:
属性操作 <input type=”text” class=”apple” id=”username” name=”username” value=”tom” address=”beijing” /> itnode.属性名称 itnode.属性名称= 值; itnode.getAttribute(属 阅读全文
摘要:
复选框、单选按钮、下拉列表 /***********************************************/ <script type="text/javascript"> function f1(){ //获得复选框选中情况 //$(:checked) 过滤出被选中的复选框、单选 阅读全文
摘要:
1 派生选择器:在s1内部获得全部的s2节点(不考虑层次) $(“div span”)// 派生选择器 <div> <span></span>//找到 <p> <span></span>//找到 </p> </div> <span></span>//找不到 2 $(s1 > s2) [父子] 直接子 阅读全文
摘要:
1 基本选择器 $(‘#id属性值’) >document.getElementById() $(‘tag标签名称’) >document.getElementsByTagName(); $(‘.class属性值’) class属性值选择器 $(‘*’) 通配符选择器 $(‘s1,s2,s3’)联合 阅读全文
摘要:
index.html <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>基础核心</title><script type="text/javascript" src="jquery-1. 阅读全文
摘要:
index.html <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>基础核心</title><script type="text/javascript" src="tool.js"> 阅读全文