随笔 - 130
文章 - 1
评论 - 16
阅读 -
12万
02 2015 档案
jQuery学习笔记(9)--jquery中的事件--$(document).ready()
摘要:1.$(document).ready()方法是事件模块中最重要的一个函数,可以极大地提高web应用程序的相应速度。2.执行时机:DOM就绪后就会执行,而javascript中window.onload方法是在网页中的所有元素(包括元素的所有关联文件)完全加载到浏览器后才执行。3.可多次使用。4.有...
阅读全文
ajax学习笔记(3)--$.get()方法
摘要:1 <head runat="server"> 2 <title>jQuery中的$.get()方法</title> 3 <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> 4 <script type
阅读全文
Ajax学习笔记(2)--load()方法
摘要:1 2 3 4 17 View Code 1 2 3 4 张晓红: 5 6 青菜 7 8 9 10 11 刘龙龙...
阅读全文
Ajax学习笔记(1)
摘要:1 2 简单的ajax调用 3 32 33 34 35 36 37 38 39 View Code1 public partial class AjaxServer : System.Web.UI.Page2 {3 ...
阅读全文