摘要:Jquery 基础教程 作者Rebecca Murphey 原文链接地址http://jqfundamentals.com/With contributions by James Padolsey, Paul Irish, and others. See the GitHub repository for a complete history of contributions.Copyright © 2011Jquery Ajax一、概述 XMLHttpRequest方法允许浏览器和服务器进行交流,而无需通过整个页面的重载。这种方法就是大家熟知的Ajax(Asynchronous J
阅读全文
摘要:Jquery 基础教程 作者Rebecca Murphey 原文链接地址http://jqfundamentals.com/With contributions by James Padolsey, Paul Irish, and others. See the GitHub repository for a complete history of contributions.Copyright © 2011jquery效果概述 jquery使你向页面添加简单的效果这件事成为了小事一桩。这种效果可以由内置的设置或者提供一个持续的定制来实现。 想获得完整的关于jquery效果的细节,请
阅读全文
摘要:Jquery 基础教程 作者Rebecca Murphey 原文链接地址http://jqfundamentals.com/With contributions by James Padolsey, Paul Irish, and others. See the GitHub repository for a complete history of contributions.Copyright © 2011Jquery事件概述 jquery为选择结果附加事件处理器提供了简单的方法。当事件发生的时候,提供的方法被执行。在方法内部,this关键字指向被点击的元素。 获得关于jqueyr
阅读全文
摘要:Jquery 基础教程 作者Rebecca Murphey 原文链接地址http://jqfundamentals.com/With contributions by James Padolsey, Paul Irish, and others. See the GitHub repository for a complete history of contributions.Copyright © 2011Jquery核心$ VS $() 经过以上的铺垫,现在我们可以来认真的分析下jquery对象调用的方法.例如:$('h1').remove(); 大多数的jque
阅读全文
摘要:Jquery 基础教程 作者Rebecca Murphey 原文链接地址http://jqfundamentals.com/With contributions by James Padolsey, Paul Irish, and others. See the GitHub repository for a complete history of contributions.Copyright © 2011 【译】jquery基础教程(jQuery Fundamentals)——概述 ...
阅读全文
摘要:以前的一个项目中用到jquery,有朋友推荐jquery fundamentals 当时学习了下,感觉还不错,断断续续的翻译了一些片段,以供项目组中同事参考。google了下,并没有发现这个教程的中文翻译。 最近整理电脑,又看到了它。翻译的片段中有很多纰漏,慢慢整理了下,准备发布到园子里,希望对于初学jquery,关键是感觉看英文吃力的同学有所帮助。由于个人能力和精力所限,错误在所难免。欢迎指正。 后续的还在整理。Jquery 基础教程 作者Rebecca Murphey ...
阅读全文
摘要:Jquery 基础教程 作者Rebecca Murphey 原文链接地址http://jqfundamentals.com/With contributions by James Padolsey, Paul Irish, and others. See the GitHub repository for a complete history of contributions.Copyright © 2011 【译】jq...
阅读全文
摘要:项目中用到ajax:<asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager><asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Always"> <ContentTemplate> <asp:HiddenField runat="server" ID=&quo
阅读全文
摘要:项目中用window.showModalDialog(url)打开模态对话框,操作完成后关闭对话框,并刷新父页面;在子窗口用window.dialogArguments.location.reload(true);提示"window.dialogArguments.location为空或不是对象"。 google之,发现showModalDialog方法的一些参数如下:使用方法:vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures])参数说明:sURL必选参数,类型:字符串。用来指定对话
阅读全文