<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>翟鹏的博客 &#187; Jquery</title>
	<atom:link href="http://www.zhaipeng.cn/category/javascript/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zhaipeng.cn</link>
	<description>积极的工作,塌实的学习,安静的写博客...</description>
	<lastBuildDate>Thu, 10 Jun 2010 14:26:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CKEditor config.js参数</title>
		<link>http://www.zhaipeng.cn/2010/06/10/ckeditor-config-js%e5%8f%82%e6%95%b0/</link>
		<comments>http://www.zhaipeng.cn/2010/06/10/ckeditor-config-js%e5%8f%82%e6%95%b0/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 14:21:31 +0000</pubDate>
		<dc:creator>ZhaiPeng</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.zhaipeng.cn/?p=334</guid>
		<description><![CDATA[//当提交包含有此编辑器的表单时，是否自动更新元素内的数据 config.autoUpdateElement = true //编辑器的z-index值 config.baseFloatZIndex = 10000 //设置是使用绝对目录还是相对目录，为空为相对目录 config.baseHref = &#8221; //设置快捷键 从上往下依次是：获取焦点，元素焦点，文本菜单，撤销，重做，重做，链接，粗体，斜体，下划线 config.keystrokes = [ [ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ], [ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ], [ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ], [ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ], [ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ], [ CKEDITOR.CTRL + [...]]]></description>
		<wfw:commentRss>http://www.zhaipeng.cn/2010/06/10/ckeditor-config-js%e5%8f%82%e6%95%b0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jquery表单项取值</title>
		<link>http://www.zhaipeng.cn/2009/02/11/jquery%e8%a1%a8%e5%8d%95%e9%a1%b9%e5%8f%96%e5%80%bc/</link>
		<comments>http://www.zhaipeng.cn/2009/02/11/jquery%e8%a1%a8%e5%8d%95%e9%a1%b9%e5%8f%96%e5%80%bc/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 04:42:12 +0000</pubDate>
		<dc:creator>ZhaiPeng</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.zhaipeng.cn/?p=207</guid>
		<description><![CDATA[获取一组radio被选中项的值 var item = $&#40;'input[@name=items][@checked]'&#41;.val&#40;&#41;; 获取select被选中项的文本 var item = $&#40;&#34;select[@name=items] option[@selected]&#34;&#41;.text&#40;&#41;; select下拉框的第二个元素为当前选中值 $&#40;'#select_id'&#41;&#91;0&#93;.selectedIndex = 1; radio单选组的第二个元素为当前选中值 $&#40;'input[@name=items]'&#41;.get&#40;1&#41;.checked = true; 获取值： 文本框，文本区域： $&#40;&#34;#txt&#34;&#41;.attr&#40;&#34;value&#34;&#41;； 多选框checkbox： $&#40;&#34;#checkbox_id&#34;&#41;.attr&#40;&#34;value&#34;&#41;； 单选组radio： $&#40;&#34;input[@type=radio][@checked]&#34;&#41;.val&#40;&#41;; 下拉框select： $&#40;'#sel'&#41;.val&#40;&#41;; 控制表单元素： 文本框，文本区域： $&#40;&#34;#txt&#34;&#41;.attr&#40;&#34;value&#34;,''&#41;;//清空内容 $&#40;&#34;#txt&#34;&#41;.attr&#40;&#34;value&#34;,'11'&#41;;//填充内容 多选框checkbox： $&#40;&#34;#chk1&#34;&#41;.attr&#40;&#34;checked&#34;,''&#41;;//不打勾 $&#40;&#34;#chk2&#34;&#41;.attr&#40;&#34;checked&#34;,true&#41;;//打勾 if&#40;$&#40;&#34;#chk1&#34;&#41;.attr&#40;'checked'&#41;==undefined&#41; //判断是否已经打勾 单选组radio： //设置value=2的项目为当前选中项 $&#40;&#34;input[@type=radio]&#34;&#41;.attr&#40;&#34;checked&#34;,'2'&#41;; 下拉框select： //设置value=-sel3的项目为当前选中项 $&#40;&#34;#sel&#34;&#41;.attr&#40;&#34;value&#34;,'-sel3'&#41;; //添加下拉框的option $&#40;&#34;&#60;option value='1'&#62;1111&#60;/option&#62; &#60;option value='2'&#62;2222&#60;/option&#62;&#34;&#41;.appendTo&#40;&#34;#sel&#34;&#41;; //清空下拉框 $&#40;&#34;#sel&#34;&#41;.empty&#40;&#41;;]]></description>
		<wfw:commentRss>http://www.zhaipeng.cn/2009/02/11/jquery%e8%a1%a8%e5%8d%95%e9%a1%b9%e5%8f%96%e5%80%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用 jQuery 简化 Ajax 开发</title>
		<link>http://www.zhaipeng.cn/2008/07/07/%e4%bd%bf%e7%94%a8-jquery-%e7%ae%80%e5%8c%96-ajax-%e5%bc%80%e5%8f%91/</link>
		<comments>http://www.zhaipeng.cn/2008/07/07/%e4%bd%bf%e7%94%a8-jquery-%e7%ae%80%e5%8c%96-ajax-%e5%bc%80%e5%8f%91/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 13:55:17 +0000</pubDate>
		<dc:creator>ZhaiPeng</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.zhaipeng.cn/2008/07/07/%e4%bd%bf%e7%94%a8-jquery-%e7%ae%80%e5%8c%96-ajax-%e5%bc%80%e5%8f%91/</guid>
		<description><![CDATA[源文 IBM 看看 Ajax 和 DOM 脚本编程究竟有多简单 Jesse Skinner, Web 开发人员, Freelance 2007 年 5 月 16 日 jQuery 是一个JavaScript 库，它有助于简化 JavaScript™ 以及 Asynchronous JavaScript + XML (Ajax) 编程。与类似的 JavaScript 库不同，jQuery 具有独特的基本原理，可以简洁地表示常见的复杂代码。学习 jQuery 基本原理，探索其特性和功能，执行一些常见的 Ajax 任务并掌握如何使用插件扩展 jQuery。 jQuery 是什么？ jQuery 由 John Resig 创建于 2006 年初，对于任何使用 JavaScript 代码的程序员来说，它是一个非常有用的 JavaScript 库。无论您是刚刚接触 JavaScript 语言，并且希望获得一个能解决文档对象模型（Document Object Model，DOM）脚本和 Ajax [...]]]></description>
		<wfw:commentRss>http://www.zhaipeng.cn/2008/07/07/%e4%bd%bf%e7%94%a8-jquery-%e7%ae%80%e5%8c%96-ajax-%e5%bc%80%e5%8f%91/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>240个JQuery插件</title>
		<link>http://www.zhaipeng.cn/2008/05/28/240%e4%b8%aajquery%e6%8f%92%e4%bb%b6/</link>
		<comments>http://www.zhaipeng.cn/2008/05/28/240%e4%b8%aajquery%e6%8f%92%e4%bb%b6/#comments</comments>
		<pubDate>Wed, 28 May 2008 08:48:48 +0000</pubDate>
		<dc:creator>ZhaiPeng</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.zhaipeng.cn/2008/05/28/240%e4%b8%aajquery%e6%8f%92%e4%bb%b6/</guid>
		<description><![CDATA[概述 jQuery 是继 prototype 之后又一个优秀的 Javascrīpt 框架。其宗旨是—写更少的代码,做更多的事情。它是轻量级的 js 库(压缩后只有21k) ，这是其它的 js 库所不及的，它兼容 CSS3，还兼容各种浏览器（IE 6.0+, FF 1.5+, Safari 2.0+, Opera 9.0+）。 jQuery 是一个快速的，简洁的 javascrīpt 库，使用户能更方便地处理 HTML documents、events、实现动画效果，并且方便地为网站提供 AJAX 交互。 jQuery 还有一个比较大的优势是，它的文档说明很全，而且各种应用也说得很详细，同时还有许多成熟的插件可供选择。 jQuery 能够使用户的 html 页保持代码和 html 内容分离，也就是说，不用再在 html 里面插入一堆js来调用命令了，只需定义 id 即可。Kollermedia.at上发表的一篇JQuery插件列表的文章，如下: 文件上传(File upload) Ajax File Upload. jQUploader. Multiple File Upload plugin.  jQuery File Style. Styling an [...]]]></description>
		<wfw:commentRss>http://www.zhaipeng.cn/2008/05/28/240%e4%b8%aajquery%e6%8f%92%e4%bb%b6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
